显示列表结果布局

时间:2016-01-29 18:40:31

标签: xamarin

您好每一个代码都会显示一个包含姓名,问题,年龄,位置的列表 我只是想知道如何显示它而不是像这样显示它: 名称|问题|年龄|位置

我将如何显示:

名称问题

年龄地点

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:minWidth="25px"
    android:minHeight="25px"
    android:weightSum="100">
    <TextView
        android:text="Name"
        android:layout_width="match_parent"
        android:layout_weight="25"
        android:layout_height="wrap_content"
        android:id="@+id/txtName"
        android:paddingTop="2dp"
        android:paddingLeft="5dp"
        android:paddingBottom="2dp" />
    <TextView
        android:text="Issue"
        android:layout_width="match_parent"
        android:layout_weight="25"
        android:layout_height="wrap_content"
        android:id="@+id/txtIssue"
        android:paddingTop="2dp"
        android:paddingLeft="5dp"
        android:paddingBottom="2dp" />
    <TextView
        android:text="Age"
        android:layout_width="match_parent"
        android:layout_weight="25"
        android:layout_height="wrap_content"
        android:id="@+id/txtAge"
        android:paddingTop="2dp"
        android:paddingLeft="5dp"
        android:paddingBottom="2dp" />
    <TextView
        android:text="Location"
        android:layout_width="match_parent"
        android:layout_weight="25"
        android:layout_height="wrap_content"
        android:id="@+id/txtLocation"
        android:paddingTop="2dp"
        android:paddingLeft="5dp"
        android:paddingBottom="2dp" />
</LinearLayout>

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

enter image description here

你需要一个垂直布局,有两个嵌套的水平布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:minHeight="25px"
    android:minWidth="25px"
    android:orientation="vertical">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="50">

        <TextView
            android:id="@+id/txtName"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="25"
            android:paddingBottom="2dp"
            android:paddingLeft="5dp"
            android:paddingTop="2dp"
            android:text="Name" />

        <TextView
            android:id="@+id/txtIssue"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="25"
            android:paddingBottom="2dp"
            android:paddingLeft="5dp"
            android:paddingTop="2dp"
            android:text="Issue" />

    </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:weightSum="50">

            <TextView
                android:id="@+id/txtAge"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="25"
                android:paddingBottom="2dp"
                android:paddingLeft="5dp"
                android:paddingTop="2dp"
                android:text="Age" />

            <TextView
                android:id="@+id/txtLocation"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="25"
                android:paddingBottom="2dp"
                android:paddingLeft="5dp"
                android:paddingTop="2dp"
                android:text="Location" />

        </LinearLayout>

    </LinearLayout>