自定义列表视图 - 排列项目

时间:2013-07-08 17:04:34

标签: android android-listview

所以我有一个使用ArrayAdapter设置的自定义列表视图等。我有一切正常,但这更像是一个关于设计的问题。

我在每一行都有2个ListViews,我希望边缘区域在每一行上排成行,因为当第一个TextView中有不同数量的字符时,它不会出现。

以下是示例图片:  enter image description here

你可以看到示例1,2和3没有对齐,我想改变它,以便它们可以但我无法弄清楚如何。我已经玩了一些边缘,但这没有用。下面是行的XML:

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

    <TextView
        android:id="@+id/listViewRowItemInitials"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_marginBottom="10dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp"
        android:layout_marginTop="10dp"
        android:gravity="center_vertical"
        android:textSize="12sp" />

    <TextView
        android:id="@+id/listViewRowItemFull"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="10dp"
        android:gravity="center_vertical"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

1 个答案:

答案 0 :(得分:2)

只需指定第一个TextView

的宽度即可
<TextView
    android:id="@+id/listViewRowItemInitials"
    android:layout_width="100dp"
    android:layout_height="fill_parent"
    android:layout_marginBottom="10dp"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:layout_marginTop="10dp"
    android:gravity="center_vertical"
    android:textSize="12sp" />