透明狀態欄我使用的方式https://stackoverflow.com/a/27051852/3875363實現狀態欄後面的抽屜展示片段,它似乎很動聽前只停留了一個視圖。上隱藏後底部奇怪填充和使用DrawerLayout
但我面臨着一個奇怪的情況後,我隱藏和顯示這個片段,一個白色填充出現在drawerlayout的底部,它喜歡在下面。
我的評論最代碼顯示一個簡單的例子。
活動的佈局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
片段與抽屜
<android.support.v4.widget.DrawerLayout android:id="@+id/drawer_layout"
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:fitsSystemWindows="true"
tools:context=".MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/action_bar_in_list"
layout = "@layout/toolbar"/>
</RelativeLayout>
<com.ghostflying.portalwaitinglist.ScrimInsetsFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/debug_content"
android:background="@color/setting_item_group_title_text"
app:insetForeground="#4000"
android:fitsSystemWindows="true"
android:layout_gravity="start"
android:layout_height="match_parent"
android:layout_width="@dimen/navigation_drawer_width">
</com.ghostflying.portalwaitinglist.ScrimInsetsFrameLayout>
</android.support.v4.widget.DrawerLayout>
所述第二片段的佈局的佈局:
<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">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/hello_blank_fragment"/>
</FrameLayout>
一旦我隱藏抽屜片段顯示第二個片段,然後彈出返回堆棧返回。抽屜碎片看起來像圖像,總是出現狀態欄高度的填充。這麼奇怪。
事實上,填充是全0dp,我評論大部分代碼,看起來也很奇怪,我稍後會編輯這個問題。 – GhostFlying