我目前正在尝试使用协调器布局来折叠图像 - 在具有透明状态栏的主题中 - 但是有三个问题困扰着我:
代码:
<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed"
app:statusBarScrim="@color/colorPrimary"
app:contentScrim="@color/colorPrimaryDark">
<RelativeLayout
android:id="@+id/cover_wrapper"
android:layout_width="match_parent"
android:layout_height="@dimen/rsc_character_details_cover_height">
<ImageView
android:id="@+id/cover"
android:layout_width="match_parent" android:layout_height="@dimen/rsc_character_details_cover_height"/>
</RelativeLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/cover_wrapper"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="6">
...
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
这就是我设置状态栏透明度的方式:
<item name="android:windowTranslucentStatus">true</item>
任何帮助将非常感谢。 非常感谢你。
答案 0 :(得分:2)
对于图像未显示在状态栏后面并被切断的问题,状态栏区域中应显示的任何内容都应为android:fitsSystemWindows="true"
。即。您的cover_wrapper
和cover
。