AppCompat v22 的 windowTranslucentStatus 问题
Issue with windowTranslucentStatus with AppCompat v22
我在将 状态栏 透明 分别设为半透明时遇到问题。我正在使用 AppCompat v22 主题。我想对 API >=19 使用 windowTranslucentStatus。我真的在 Whosebug 上搜索了答案,但找不到解决我问题的方法。
我认为最简单的方法是向您展示我的代码和我用来测试该应用程序的智能手机的屏幕截图。
<RelativeLayout
android:id="@+id/activitylayout"
android:fitsSystemWindows="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
在我的 Activity 布局的代码上方。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="drawerArrowStyle">@style/drawerarrowstyle1</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:fitsSystemWindows">true</item>
我的 style.xml(v19) 代码。
问题:我的状态栏有白色背景,在导航抽屉中它甚至不可见。
有三件事可以帮助我解决同样的问题。
正确的布局文件。 Appbar 上方的可滚动视图。
<! -- Your Scrollable View -->
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
...
app:layout_scrollFlags="scroll|enterAlways">
<android.support.design.widget.TabLayout
...
app:layout_scrollFlags="scroll|enterAlways">
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
android:fitsSystemWindows="true|false"
样式定义:
<style name="AppTheme.TransparentStatusBar">
<item name="android:windowTranslucentStatus">true</item>
</style>
可能在第 2 点中准确说明您的问题。
我在将 状态栏 透明 分别设为半透明时遇到问题。我正在使用 AppCompat v22 主题。我想对 API >=19 使用 windowTranslucentStatus。我真的在 Whosebug 上搜索了答案,但找不到解决我问题的方法。 我认为最简单的方法是向您展示我的代码和我用来测试该应用程序的智能手机的屏幕截图。
<RelativeLayout
android:id="@+id/activitylayout"
android:fitsSystemWindows="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
在我的 Activity 布局的代码上方。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="drawerArrowStyle">@style/drawerarrowstyle1</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:fitsSystemWindows">true</item>
我的 style.xml(v19) 代码。 问题:我的状态栏有白色背景,在导航抽屉中它甚至不可见。
有三件事可以帮助我解决同样的问题。
正确的布局文件。 Appbar 上方的可滚动视图。
<! -- Your Scrollable View --> <android.support.v7.widget.RecyclerView android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <android.support.v7.widget.Toolbar ... app:layout_scrollFlags="scroll|enterAlways"> <android.support.design.widget.TabLayout ... app:layout_scrollFlags="scroll|enterAlways"> </android.support.design.widget.AppBarLayout> </android.support.design.widget.CoordinatorLayout>
android:fitsSystemWindows="true|false"
样式定义:
<style name="AppTheme.TransparentStatusBar"> <item name="android:windowTranslucentStatus">true</item> </style>
可能在第 2 点中准确说明您的问题。