Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 649b1c6e authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

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.
parents efae672d 8b5e7c04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;