I've created multi column in listview with custom adapter. I want to add headers to my listview. I created list_adapter.xml bellow my code
<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>
There is a photo what I want: