使用ViewPager和fitsSystemWindow控制状态栏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ViewPager和fitsSystemWindow控制状态栏相关的知识,希望对你有一定的参考价值。
我有一个ViewPager
与Fragments
,其中包含全屏图像和一些底部对齐的控件。
我想确保控件不会在fitsSystemWindow
的半透明导航栏后面消失,但我似乎无法使它工作......
当我在没有ViewPager
的情况下使用相同的xml时它确实有效,所以看起来ViewPager
“打破”使用fitsSystemWindow
的能力。
我为活动编写的代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
这就是我对片段的看法:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="#000"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/initial_background_image"
android:scaleType="centerCrop"/>
<RelativeLayout
android:id="@+id/buttons_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/button_icon_offset"
android:layout_marginBottom="@dimen/button_icon_offset"
android:layout_marginRight="@dimen/button_icon_offset"
android:fitsSystemWindows="true"
android:layout_gravity="bottom">
<Button
android:id="@+id/info_button"
style="@style/button_icon"
android:layout_gravity="left|bottom"
android:background="@drawable/button_info"
android:textAlignment="center"/>
<Button
android:id="@+id/share_button"
style="@style/button_icon"
android:layout_alignTop="@id/info_button"
android:layout_marginRight="@dimen/button_icon_divider"
android:layout_toLeftOf="@+id/like_button"
android:background="@drawable/button_share"/>
<Button
android:id="@+id/like_button"
style="@style/button_icon"
android:layout_alignParentRight="true"
android:background="@drawable/button_like"/>
</RelativeLayout>
</FrameLayout>
所以这就是我最终的结果...但我希望按钮出现在导航栏上方。
首先,请参阅有关thiss的WindowInset
答案。然后你会明白,你的根布局 - FrameLayout
,不会将WindowInset
s发送给ViewPager
。
使用ViewCompat.setOnApplyWindowInsetsListener()
API将WindowInset
s发送到ViewPager
并使你的ViewPager
适合窗口插入,即将android:fitsSystemWindows="true"
应用于ViewPager
和它的父级。
只需在style.xml中更改/删除它即可
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
...
</style>
如果仍然不工作?你正在使用
NestedScrollView
然后添加“android:clipToPadding”
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/light_green"
android:clipToPadding="false" <--add this
app:layout_behavior="@string/appbar_scrolling_view_behavior">
您可以在按钮底部添加边距,将它们放在导航栏上方。
android:layout_marginBottom="?attr/actionBarSize"
以上是关于使用ViewPager和fitsSystemWindow控制状态栏的主要内容,如果未能解决你的问题,请参考以下文章
Android ------ ViewPager1和ViewPager2的使用
Android ------ ViewPager1和ViewPager2的使用
如何使用导航抽屉和viewpager/viewpager2在java中制作android应用程序
使用 recyclerview 和 Asynctask 设置 Viewpager
有关ViewPager使用及解决ViewPager和PagerAdapter中调用notifyDataSetChanged失效问题