I tried to put textview and edittext top of listview in layout, but listview is not appearing. When I remove these textview and edittext then the listview appearing.
here is my layout xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/TestLinearLayout">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello"
android:id="@+id/text"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/editText"
/>
</LinearLayout>
<ListView
android:id="@+id/ListView01"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
</LinearLayout>


addHeaderLayoutto add a header to a ListView. See my response. – ChristopheCVB Sep 14 '12 at 10:43