diff options
| author | Aurimas Liutikas <aurimas@google.com> | 2016-10-11 16:48:32 -0700 |
|---|---|---|
| committer | Aurimas Liutikas <aurimas@google.com> | 2016-10-11 17:00:17 -0700 |
| commit | 99441c5d7da45c10b729185852be97cbb0bdc8d5 (patch) | |
| tree | dfb0c7abbc7e1cb625f9434ef6d8289f041d5b33 /core/java/android/widget/CheckBox.java | |
| parent | 97a6a0a11402bb83303aa8eada7a1b1abe490848 (diff) | |
Fix import statements in android.widget package.
Additionally this CL removes spaces at the end of the line.
Test: code still compiles.
Change-Id: I1ce98b4e70aa3ae614f87966c3bc6181fa4389a4
Diffstat (limited to 'core/java/android/widget/CheckBox.java')
| -rw-r--r-- | core/java/android/widget/CheckBox.java | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/core/java/android/widget/CheckBox.java b/core/java/android/widget/CheckBox.java index 15bbdd217751..046f75fd37ac 100644 --- a/core/java/android/widget/CheckBox.java +++ b/core/java/android/widget/CheckBox.java @@ -19,7 +19,6 @@ package android.widget; import android.content.Context; import android.util.AttributeSet; - /** * <p> * A checkbox is a specific type of two-states button that can be either @@ -44,12 +43,12 @@ import android.util.AttributeSet; * * <p>See the <a href="{@docRoot}guide/topics/ui/controls/checkbox.html">Checkboxes</a> * guide.</p> - * - * <p><strong>XML attributes</strong></p> + * + * <p><strong>XML attributes</strong></p> * <p> - * See {@link android.R.styleable#CompoundButton CompoundButton Attributes}, - * {@link android.R.styleable#Button Button Attributes}, - * {@link android.R.styleable#TextView TextView Attributes}, + * See {@link android.R.styleable#CompoundButton CompoundButton Attributes}, + * {@link android.R.styleable#Button Button Attributes}, + * {@link android.R.styleable#TextView TextView Attributes}, * {@link android.R.styleable#View View Attributes} * </p> */ @@ -57,7 +56,7 @@ public class CheckBox extends CompoundButton { public CheckBox(Context context) { this(context, null); } - + public CheckBox(Context context, AttributeSet attrs) { this(context, attrs, com.android.internal.R.attr.checkboxStyle); } |
