Merge change 736 into donut

* changes:
  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.
This commit is contained in:
Android (Google) Code Review
2009-04-29 13:06:31 -07:00

View File

@@ -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;