Android动态列表视图对齐方式

时间:2014-09-19 05:00:46

标签: android layout

我有一个关于Android Layout的问题我正在尝试在警告对话框中创建动态列表视图。 如下

Column1                 Column2                   Column3                  Column4
hjdgfhdbfhjnb        hjdjhfjkhkjnhjkln                 dhjfjdkh                  hdjghjd
hgchg676          kjkcvkjv                 hjchjcc                 cjjkcjclkjnn

这种情况正在发生,但我希望以纯对齐的方式。我正在使用这个但不适合我

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
android:weightSum="4" >

  <TextView
            android:id="@+id/orderTitle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textColor="@color/black_gradient"
            android:textSize="20dp" />

        <TextView
            android:id="@+id/search_batchnumber"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1.5"
            android:textColor="@color/black_gradient"
            android:textSize="20dp" />

        <TextView
            android:id="@+id/search_inventory"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight=".5"
            android:textColor="@color/black_gradient"
            android:textSize="20dp" />

        <TextView
            android:id="@+id/search_rate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:textColor="@color/black_gradient"
            android:textSize="20dp" />

     </LinearLayout>

所以请给我一个建议,我该如何协调一致?

2 个答案:

答案 0 :(得分:2)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:weightSum="4" >

    <TextView
        android:id="@+id/orderTitle"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="left"
        android:textColor="@color/black_gradient"
        android:textSize="20dp" />

    <TextView
        android:id="@+id/search_batchnumber"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.5"
        android:gravity="left"
        android:textColor="@color/black_gradient"
        android:textSize="20dp" />

    <TextView
        android:id="@+id/search_inventory"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight=".5"
        android:gravity="left"
        android:textColor="@color/black_gradient"
        android:textSize="20dp" />

    <TextView
        android:id="@+id/search_rate"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="left"
        android:textColor="@color/black_gradient"
        android:textSize="20dp" />

</LinearLayout>

try this.

答案 1 :(得分:0)

将linearLayout宽度更改为android:layout_width =“match_parent”