我有自定義工具欄,我希望我的列表視圖在工具欄下方。但是listview出現在工具欄上,我的layout_below不起作用。我知道以前有很多問題。但沒有任何工作。請幫我Layout_below不工作在我的列表視圖
下面是我layoutxml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="faisal.home.com.tafaqquhfiddin.DuwaListView">
<include
layout="@layout/toolbar_layout"
/>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/MyListView"
android:layout_below="@+id/toolbar"
></ListView>
</RelativeLayout>
toolbarlayout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/orange"
app:layout_scrollFlags="scroll|enterAlways"
app:titleTextColor="@color/white"></android.support.v7.widget.Toolbar>
</LinearLayout>
問題是因爲toolbarlayout.xml您的線性佈局需要你的屏幕上的所有高度,因爲你將它指定爲匹配父 – HendraWD