目前我的listView出现在TabLayout上,但我需要listView显然出现在tabLayout下面。
我尝试在XML设计组件树中的几个位置移动listView,但是当我运行应用程序时,其他位置的其他XML文件的内容出现在我的listView前面,这并不好。所以这是我测试过的组件树的唯一位置,除了覆盖TabLayout部分的listView之外,一切都有效。
这就是我所拥有的:
以下是此代码:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:id="@+id/drawerLayout"
tools:context="com.example.myname.appname.MainActivity">
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="0dp"
android:layout_height="15dp"
android:fitsSystemWindows="true"
tools:context="com.example.myname.appname.MainActivity"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#CBAEFF"
android:theme="@style/AppTheme.AppBarOverlay"
/>
<com.example.myname.appname.CustomViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="48dp"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_gravity="end|bottom"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_fab_xhdpi"
android:scaleType="centerCrop"
app:srcCompat="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="start"
app:menu="@menu/menu_info"
app:headerLayout="@layout/navigation_header"
app:itemIconTint="#000000"
app:itemBackground="@drawable/color_press_navigation"
android:id="@+id/Navigation_header"
android:fitsSystemWindows="false"
tools:layout_editor_absoluteY="25dp"
tools:layout_editor_absoluteX="0dp">
</android.support.design.widget.NavigationView>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="264dp"
android:layout_height="174dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.myname.appname.MainActivity"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absoluteX="8dp">
<ListView
android:id="@+id/list"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ffffff"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:layout_editor_absoluteX="8dp"
/>
</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.DrawerLayout>
我在上面的XML代码中做了哪些更改,以使listView出现在TabLayout下面?