使用自定义适配器/ layoutinflater时,垂直对齐textview列

时间:2012-03-21 11:38:44

标签: android textview alignment

我想要垂直对齐的三列。使用对象检索列的数据,然后使用LayoutInflater.

显示

目前,这些专栏到处都是。我希望他们完全一致。我正在使用TextView,但我开始怀疑我是否应该使用某种TableLayout.

enter image description here 这是XML:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/table_layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <ListView
        android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <TableRow android:id="@+id/row_multi_row">

        <TextView
            android:id="@+id/item1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="3dip"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:id="@+id/item2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="3dip"
            android:textAppearance="?android:attr/textAppearanceLarge" />

        <TextView
            android:id="@+id/item3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:padding="3dip"
            android:textAppearance="?android:attr/textAppearanceLarge" />

    </TableRow>
</TableLayout>

2 个答案:

答案 0 :(得分:1)

enter image description here试试这个:

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/row_multi_row"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">

<TextView
    android:id="@+id/item1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.34"
    android:padding="3dip"
    android:text="asdasd"
    android:gravity="center"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/item2"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.34"
    android:padding="3dip"
    android:gravity="center"
    android:text="adasd"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/item3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.32"
    android:padding="3dip"
    android:gravity="center"
    android:text="asdasdad"
    android:textAppearance="?android:attr/textAppearanceLarge" />

答案 1 :(得分:0)

将所有textview宽度和制表符行宽设置为填充父级并使用layout_weight =“1”。它会起作用