0

我正在尝试创建一个列表,CheckedTextView如下图所示: 在此处输入图像描述

到目前为止,我所做的是创建 aLinearLayout并添加 5 CheckedTextView。但我需要自定义复选标记。我已经检查了这个,但这并没有移动图像中的复选标记位置。

这是我的代码:

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

谁能告诉我如何将复选标记放在绿色边框的中间?

谢谢 :)

4

0 回答 0