diff options
| author | Romain Guy <romainguy@google.com> | 2009-04-29 11:48:22 -0700 |
|---|---|---|
| committer | Romain Guy <romainguy@google.com> | 2009-04-29 11:48:22 -0700 |
| commit | 8b5e7c046d4ab2fff7c4e1c67488058ff736b9ea (patch) | |
| tree | 572510e7de2c71398aefa676a22df657857b7874 /core/java/android/widget/CheckedTextView.java | |
| parent | c5f1b92d0a480f3119be8ea6eebbada402c17cf3 (diff) | |
CheckedTextView is abstract but can be inflated from XML. Let's be consistent and allow it to be used from Java code as well by making it non-abstract.
Diffstat (limited to 'core/java/android/widget/CheckedTextView.java')
| -rw-r--r-- | core/java/android/widget/CheckedTextView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/CheckedTextView.java b/core/java/android/widget/CheckedTextView.java index f5a0b1c09f1e..abcc715c77e5 100644 --- a/core/java/android/widget/CheckedTextView.java +++ b/core/java/android/widget/CheckedTextView.java @@ -33,7 +33,7 @@ import com.android.internal.R; * something other than {@link android.widget.ListView#CHOICE_MODE_NONE CHOICE_MODE_NONE}. * */ -public abstract class CheckedTextView extends TextView implements Checkable { +public class CheckedTextView extends TextView implements Checkable { private boolean mChecked; private int mCheckMarkResource; private Drawable mCheckMarkDrawable; |
