2

我有一个小问题。我有一个 ListView,我使用:

ArrayAdapter adapter = new ArrayAdapter<String>(this,
        android.R.layout.simple_list_item_single_choice,
        data);

有单选的列表。但在这个解决方案中,我在右侧有一个单选按钮,但我想把它们放在左侧。我怎样才能做到这一点?

编辑:我的 xml 文件:

<LinearLayout     
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:orientation="vertical" 
    android:layout_weight="92.5">
    <TextView
        android:id="@+id/user_account_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="109dp"
        android:text="@string/user_account_text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <ListView
        android:id="@+id/user_account"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="10dp" 
        android:scrollbars="vertical"
        android:layout_marginRight="100dp"
        android:layout_weight="1"
        android:layout_marginLeft="100dp">
    </ListView>

    <Button
        android:id="@+id/login_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:layout_marginBottom="20dp"
        android:layout_gravity="center"
        android:text="@string/login" 
        android:background="@drawable/button"
        android:textColor="@android:color/white"/>

</LinearLayout>
4

2 回答 2

8

创建新xml布局并复制android.R.layout.simple_list_item_single_choice此处)的源代码

然后,

  1. 更改android:checkMark="?android:attr/listChoiceIndicatorSingle"android:checkMark="@null"
  2. 添加新行: android:drawableLeft="?android:attr/listChoiceIndicatorSingle"
    或者如果您想要复选框,请使用此行:
    android:drawableLeft="?android:attr/listChoiceIndicatorMultiple"
  3. 在您的代码中使用这个新布局:
    ArrayAdapter adapter = new ArrayAdapter<String>(this, R.layout.YOUR_NEW_XML, data);

该线程可能对您有所帮助:如何使 Android CheckedTextView 中的复选框左对齐而不是右对齐?

于 2013-06-20T07:58:46.787 回答
1

使用您的简单适配器和布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >
    <RadioButton
        android:layout_width="wrap_content" android:id="@+id/radio"
        android:layout_height="wrap_content" />
    <TextView
        android:layout_width="wrap_content"
         android:id="@+id/text"
        android:layout_height="wrap_content"
        android:text="hi" />
</LinearLayout>

SimpleAdapter 适配器 = new SimpleAdapter(this,data,R.layout.main,new String[]{""},new int[]{R.id.txt});

list.setAdapter(适配器);

于 2013-06-20T07:45:04.777 回答