AppCompatAutoCompleteTextView.java
3.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package android.support.v7.widget;
import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff.Mode;
import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes;
import android.support.annotation.Nullable;
import android.support.annotation.RestrictTo;
import android.support.v4.view.TintableBackgroundView;
import android.support.v7.appcompat.R.attr;
import android.support.v7.content.res.AppCompatResources;
import android.util.AttributeSet;
import android.widget.AutoCompleteTextView;
import gd;
import gh;
public class AppCompatAutoCompleteTextView
extends AutoCompleteTextView
implements TintableBackgroundView
{
private static final int[] a = { 16843126 };
private gd b;
private gh c;
public AppCompatAutoCompleteTextView(Context paramContext)
{
this(paramContext, null);
}
public AppCompatAutoCompleteTextView(Context paramContext, AttributeSet paramAttributeSet)
{
this(paramContext, paramAttributeSet, R.attr.autoCompleteTextViewStyle);
}
public AppCompatAutoCompleteTextView(Context paramContext, AttributeSet paramAttributeSet, int paramInt)
{
super(TintContextWrapper.wrap(paramContext), paramAttributeSet, paramInt);
paramContext = TintTypedArray.obtainStyledAttributes(getContext(), paramAttributeSet, a, paramInt, 0);
if (paramContext.hasValue(0)) {
setDropDownBackgroundDrawable(paramContext.getDrawable(0));
}
paramContext.recycle();
this.b = new gd(this);
this.b.a(paramAttributeSet, paramInt);
this.c = gh.a(this);
this.c.a(paramAttributeSet, paramInt);
this.c.a();
}
protected void drawableStateChanged()
{
super.drawableStateChanged();
if (this.b != null) {
this.b.d();
}
if (this.c != null) {
this.c.a();
}
}
@Nullable
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public ColorStateList getSupportBackgroundTintList()
{
if (this.b != null) {
return this.b.b();
}
return null;
}
@Nullable
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public PorterDuff.Mode getSupportBackgroundTintMode()
{
if (this.b != null) {
return this.b.c();
}
return null;
}
public void setBackgroundDrawable(Drawable paramDrawable)
{
super.setBackgroundDrawable(paramDrawable);
if (this.b != null) {
this.b.a();
}
}
public void setBackgroundResource(@DrawableRes int paramInt)
{
super.setBackgroundResource(paramInt);
if (this.b != null) {
this.b.a(paramInt);
}
}
public void setDropDownBackgroundResource(@DrawableRes int paramInt)
{
setDropDownBackgroundDrawable(AppCompatResources.getDrawable(getContext(), paramInt));
}
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public void setSupportBackgroundTintList(@Nullable ColorStateList paramColorStateList)
{
if (this.b != null) {
this.b.a(paramColorStateList);
}
}
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode paramMode)
{
if (this.b != null) {
this.b.a(paramMode);
}
}
public void setTextAppearance(Context paramContext, int paramInt)
{
super.setTextAppearance(paramContext, paramInt);
if (this.c != null) {
this.c.a(paramContext, paramInt);
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v7/widget/AppCompatAutoCompleteTextView.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/