Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CheckBox doesn't appear in CheckedTextView

When I set up my CheckedTextView, it has no CheckBox. Here is the xml code for it:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    <CheckedTextView
            android:id="@+id/checkedtext"
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:checked="false"
            android:textSize="25dp"
            android:textColor="#FFFFFF"
            android:checkMark="@android:attr/checkMark"
            />
</RelativeLayout>
like image 938
Cg2916 Avatar asked Feb 21 '11 20:02

Cg2916


2 Answers

Try : android:checkMark="?android:attr/listChoiceIndicatorMultiple"

like image 101
lini sax Avatar answered Sep 21 '22 10:09

lini sax


replace

android:checkMark="@android:attr/checkMark"

by

android:checkMark="?android:attr/textCheckMark" 
like image 40
EricLarch Avatar answered Sep 25 '22 10:09

EricLarch