我正在尝试创建CheckedTextView
的列表,如下图所示:
到目前为止,我所做的是创建LinearLayout
并添加5 CheckedTextView
。但我需要自定义复选标记。我已经检查了this,但这不会移动复选标记位置,因为它位于图像中。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<CheckedTextView
android:textColor="#c0c0c0"
android:id="@+id/checkedTextView1"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:checkMark="?android:attr/textCheckMark"
android:textSize="18sp"
android:text="@string/first_tone"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:background="@drawable/border"
android:gravity="center_vertical" />
<CheckedTextView
android:textColor="#c0c0c0"
android:id="@+id/checkedTextView2"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:checkMark="?android:attr/textCheckMark"
android:textSize="18sp"
android:text="@string/second_tone"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:gravity="center_vertical" />
<CheckedTextView
android:textColor="#c0c0c0"
android:id="@+id/checkedTextView3"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:checkMark="?android:attr/textCheckMark"
android:textSize="18sp"
android:text="@string/third_tone"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:gravity="center_vertical" />
<CheckedTextView
android:textColor="#c0c0c0"
android:id="@+id/checkedTextView4"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:checkMark="?android:attr/textCheckMark"
android:textSize="18sp"
android:text="@string/fourth_tone"
android:paddingLeft="15dip"
android:paddingRight="15dip"
android:gravity="center_vertical" />
</LinearLayout>
有谁能告诉我如何在绿色边框的中间放置复选标记?
谢谢:)