如何在不重叠滚动条的情况下显示Android右对齐的ListItem数据?

时间:2011-07-13 03:27:48

标签: android listview android-layout listviewitem

我与ListView row styling - left aligned text, and right-aligned icon基本相同:列表视图中包含右对齐的列表项:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">
    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:text="Name"
        android:id="@+id/list_item_name" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_alignParentLeft="true"
        >
    </TextView>
    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:text="0x0 0s"
        android:id="@+id/list_item_value" 
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_alignParentRight="true" 
        >
    </TextView>
</RelativeLayout>

并且它工作正常..除了滚动条隐藏list_item_value文本。名称和值之间有足够的空白区域,将左边的所有值都缩小到一点也不错,但我也不知道该怎么做。

1 个答案:

答案 0 :(得分:2)

尝试在android:layout_marginRight上设置list_item_value。尝试大约10dp的值 - 只是为了感受一下,然后相应地调整。