My app contains ListView
and TextView
. I want to arrange TextView
to below of ListView
. I tried with below code, but TextView
disappeared.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/android:list"
android:text="@string/hello"
/>
</RelativeLayout>
Thanks.