CheckBox没有出现在CheckedTextView中

时间:2011-02-21 20:22:01

标签: android android-relativelayout android-checkbox

当我设置CheckedTextView时,它没有CheckBox。这是它的xml代码:

<?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>

2 个答案:

答案 0 :(得分:27)

尝试: 机器人: “机器人:ATTR / listChoiceIndicatorMultiple” 复选标记=

答案 1 :(得分:15)

替换

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

通过

android:checkMark="?android:attr/textCheckMark"