ac.java
3.99 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import android.content.res.Resources;
import android.content.res.Resources.Theme;
import android.content.res.TypedArray;
import android.graphics.ColorFilter;
import android.graphics.PorterDuff.Mode;
import android.graphics.Rect;
import android.graphics.Region;
import android.graphics.drawable.Drawable;
import android.support.v4.graphics.drawable.DrawableCompat;
import android.support.v4.graphics.drawable.TintAwareDrawable;
import android.util.AttributeSet;
public abstract class ac
extends Drawable
implements TintAwareDrawable
{
public Drawable c;
public static TypedArray obtainAttributes(Resources paramResources, Resources.Theme paramTheme, AttributeSet paramAttributeSet, int[] paramArrayOfInt)
{
if (paramTheme == null) {
return paramResources.obtainAttributes(paramAttributeSet, paramArrayOfInt);
}
return paramTheme.obtainStyledAttributes(paramAttributeSet, paramArrayOfInt, 0, 0);
}
public void applyTheme(Resources.Theme paramTheme)
{
if (this.c != null) {
DrawableCompat.applyTheme(this.c, paramTheme);
}
}
public void clearColorFilter()
{
if (this.c != null)
{
this.c.clearColorFilter();
return;
}
super.clearColorFilter();
}
public ColorFilter getColorFilter()
{
if (this.c != null) {
return DrawableCompat.getColorFilter(this.c);
}
return null;
}
public Drawable getCurrent()
{
if (this.c != null) {
return this.c.getCurrent();
}
return super.getCurrent();
}
public int getMinimumHeight()
{
if (this.c != null) {
return this.c.getMinimumHeight();
}
return super.getMinimumHeight();
}
public int getMinimumWidth()
{
if (this.c != null) {
return this.c.getMinimumWidth();
}
return super.getMinimumWidth();
}
public boolean getPadding(Rect paramRect)
{
if (this.c != null) {
return this.c.getPadding(paramRect);
}
return super.getPadding(paramRect);
}
public int[] getState()
{
if (this.c != null) {
return this.c.getState();
}
return super.getState();
}
public Region getTransparentRegion()
{
if (this.c != null) {
return this.c.getTransparentRegion();
}
return super.getTransparentRegion();
}
public void jumpToCurrentState()
{
if (this.c != null) {
DrawableCompat.jumpToCurrentState(this.c);
}
}
public void onBoundsChange(Rect paramRect)
{
if (this.c != null)
{
this.c.setBounds(paramRect);
return;
}
super.onBoundsChange(paramRect);
}
public boolean onLevelChange(int paramInt)
{
if (this.c != null) {
return this.c.setLevel(paramInt);
}
return super.onLevelChange(paramInt);
}
public void setChangingConfigurations(int paramInt)
{
if (this.c != null)
{
this.c.setChangingConfigurations(paramInt);
return;
}
super.setChangingConfigurations(paramInt);
}
public void setColorFilter(int paramInt, PorterDuff.Mode paramMode)
{
if (this.c != null)
{
this.c.setColorFilter(paramInt, paramMode);
return;
}
super.setColorFilter(paramInt, paramMode);
}
public void setFilterBitmap(boolean paramBoolean)
{
if (this.c != null) {
this.c.setFilterBitmap(paramBoolean);
}
}
public void setHotspot(float paramFloat1, float paramFloat2)
{
if (this.c != null) {
DrawableCompat.setHotspot(this.c, paramFloat1, paramFloat2);
}
}
public void setHotspotBounds(int paramInt1, int paramInt2, int paramInt3, int paramInt4)
{
if (this.c != null) {
DrawableCompat.setHotspotBounds(this.c, paramInt1, paramInt2, paramInt3, paramInt4);
}
}
public boolean setState(int[] paramArrayOfInt)
{
if (this.c != null) {
return this.c.setState(paramArrayOfInt);
}
return super.setState(paramArrayOfInt);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/ac.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/