我想为数据集添加标题?

时间:2016-08-24 18:14:23

标签: android xml

Screenshot

*我想在每组数据的顶部有一个标题 例如:id,apple,数量,类别和重要性 这是我这个屏幕的xml代码:*

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff59d"
    android:paddingTop="10dp">




    <TextView
        android:layout_marginTop="50dp"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:text="Product Id"
        android:textColor="#000000"
        android:id="@+id/product_id"
        >

    </TextView>

    <TextView
        android:layout_marginTop="50dp"
        android:layout_width="80dp"
        android:layout_height="50dp"
        android:text="Product Name"
        android:textColor="#000000"
        android:id="@+id/product_name"

        />

    <TextView
    android:layout_marginTop="50dp"
    android:layout_width="80dp"
    android:layout_height="50dp"
    android:text="Product Category"
    android:textColor="#000000"
    android:id="@+id/product_category"

    />

    <TextView
        android:layout_marginTop="50dp"
        android:layout_width="55dp"
        android:layout_height="50dp"
        android:text="Quantity"
        android:textColor="#000000"
        android:id="@+id/product_quantity"

        />
    <TextView
        android:layout_marginTop="50dp"
        android:layout_width="80dp"
        android:layout_height="50dp"
        android:text="Importance"
        android:textColor="#000000"
        android:id="@+id/product_Importance"

        />

</LinearLayout>

0 个答案:

没有答案