我正在我的应用中实现列表视图。我正在尝试为Android 6.0构建我的应用程序并选择主题“DarkActionBar”。我现在正在activity_main.xml中使用此代码。
<?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:fitsSystemWindows="true"
tools:context="com.mycompany.www.mynotes.MainActivity">
<android.support.design.widget.AppBarLayout
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"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
</android.support.design.widget.CoordinatorLayout>
我刚刚在此代码中添加了listview(替换textview)。当我创建项目时,其余的代码已经存在。
现在我在listview中随机添加一些项目。 现在的问题是,列表视图的最顶层项目位于工具栏后面,如下图所示。怎么解决?我希望这个listview从工具栏下面开始。
答案 0 :(得分:1)
您必须将app:layout_behavior
添加到LiveView
:
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
答案 1 :(得分:0)
看一下已经回答的其他stackoverflow问题:How to make Toolbar not overlap other content in Android?