這看起來像一個重複的問題,但我無法做到。我想要完整的透明(不是半透明)狀態欄以及導航欄,並希望內容出現在它們後面。顯示狀態和導航欄背後的內容
activity_details.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
tools:context="com.bitspilanidvm.bosm2017.DetailsActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/q"
android:scaleType="centerCrop"/>
</LinearLayout>
V21 styles.xml
<resources>
<!-- Theme for API level > 21 -->
<style name="AppTheme" parent="AppBaseTheme">
<!--Customize your theme here. -->
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
</style>
在活動的java文件
getWindow().getDecorView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
);
這是我得到的。
如何獲得導航欄後面的內容?
如果我添加
<item name="android:windowTranslucentNavigation">true</item>
我styles.xml
這裏是我所得到的
正如你所看到的,內容雲的背後導航欄,但導航欄必須是半透明的。
有沒有解決方案?
不錯這個設備有沒有硬背按鈕? –