我正在编写一个简单的应用程序来使用 ContentProvider,我有一个数据库、一个 ContentProvider、一个主要活动、一个使用 ContentResolver 将命令转发到 ContentProvider 的类。在 gui 上,我只想显示存储在数据库中的所有项目。我从头开始创建了这个项目,在创建 Activity 时,主布局有一个 CoordinatorLayout,带有一个 AppBarLayout,这很好,我创建了一个 ListView,除了 AppBarLayout 与 ListView 重叠,在 listview 的第一项下方被 AppBarLayout 隐藏。
我尝试android:layout_below
用于我的 ListView 但它不起作用,如果我使用android:layout_marginTop
那么我的 ListView 在 AppBarLayout 下,但我不觉得这个解决方案很好。
有没有简单的方法可以在 AppBarLayout 下拥有 ListView?
在我的 activity_main 布局下方:
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/holo_light_background"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/AppTheme.AppBarOverlay"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/bar"/>
<android.support.design.widget.FloatingActionButton ...>
<android.support.design.widget.FloatingActionButton ...>
</android.support.design.widget.CoordinatorLayout>