listView适配器中的标题

时间:2019-03-28 15:36:53

标签: android listview-adapter

我已经在列表视图中使用自定义适配器创建了多列。我想将标题添加到我的列表视图。我在下面的代码中创建了list_adapter.xml

<LinearLayout
android:id="@+id/relativeLayout1"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">

<TextView
    android:id="@+id/date"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="@string/date"
    android:layout_weight="1">
</TextView>
<TextView
    android:id="@+id/event"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="@string/event"
    android:layout_weight="1">
</TextView>
<TextView
    android:id="@+id/vanue"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="@string/vanue"
    android:layout_weight="1">
</TextView>

我想要一张照片:

The wanted result

0 个答案:

没有答案