AppCompatCheckBox.java
2.68 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
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.widget.TintableCompoundButton;
import android.support.v7.appcompat.R.attr;
import android.support.v7.content.res.AppCompatResources;
import android.util.AttributeSet;
import android.widget.CheckBox;
import ge;
public class AppCompatCheckBox
extends CheckBox
implements TintableCompoundButton
{
private ge a = new ge(this);
public AppCompatCheckBox(Context paramContext)
{
this(paramContext, null);
}
public AppCompatCheckBox(Context paramContext, AttributeSet paramAttributeSet)
{
this(paramContext, paramAttributeSet, R.attr.checkboxStyle);
}
public AppCompatCheckBox(Context paramContext, AttributeSet paramAttributeSet, int paramInt)
{
super(TintContextWrapper.wrap(paramContext), paramAttributeSet, paramInt);
this.a.a(paramAttributeSet, paramInt);
}
public int getCompoundPaddingLeft()
{
int j = super.getCompoundPaddingLeft();
int i = j;
if (this.a != null) {
i = this.a.a(j);
}
return i;
}
@Nullable
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public ColorStateList getSupportButtonTintList()
{
if (this.a != null) {
return this.a.a;
}
return null;
}
@Nullable
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public PorterDuff.Mode getSupportButtonTintMode()
{
if (this.a != null) {
return this.a.b;
}
return null;
}
public void setButtonDrawable(@DrawableRes int paramInt)
{
setButtonDrawable(AppCompatResources.getDrawable(getContext(), paramInt));
}
public void setButtonDrawable(Drawable paramDrawable)
{
super.setButtonDrawable(paramDrawable);
if (this.a != null) {
this.a.a();
}
}
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public void setSupportButtonTintList(@Nullable ColorStateList paramColorStateList)
{
if (this.a != null) {
this.a.a(paramColorStateList);
}
}
@RestrictTo({android.support.annotation.RestrictTo.Scope.LIBRARY_GROUP})
public void setSupportButtonTintMode(@Nullable PorterDuff.Mode paramMode)
{
if (this.a != null) {
this.a.a(paramMode);
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/android/support/v7/widget/AppCompatCheckBox.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/