我正在使用Android Studio中的选项卡式活动模板制作标签式应用。客户想要底部的标签,并且它可以在自助服务终端中使用,所以我可以使用沉浸式模式等等。
我的草稿布局如下:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
android:theme="@style/AppTheme.AppBarOverlay"
android:layout_gravity="bottom">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
AppBarLayout位于底部,但隐藏的导航栏下方有一个缺口:
有什么建议吗?
答案 0 :(得分:2)
事实证明这是一个简单的修复,将根视图中的fitsSystemWindows设置为false或将其删除。
fitsSystemWindows属性使您的ListView适合操作栏和导航栏的边缘(而不是在它们下面)。