就像你在这张照片中所做的那样,活动中有一个带有半透明状态栏的壁纸。
我正在使用: http://www.android4devs.com/2014/12/how-to-make-material-design-navigation-drawer.html
用于导航抽屉,这是我用Styles.xml
<resources>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:windowTranslucentStatus">true</item>
</style>
</resources>
并且,在Manifest中:android:theme="@android:style/Theme.Holo.NoActionBar.TranslucentDecor">
但壁纸完全不在状态栏中。
我的应用程序上没有任何java代码。
那么,我如何在此应用程序或上面的导航抽屉中添加此功能半透明状态完整?
Main_activity.xml:
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="200dp"
android:id="@+id/imageView"
android:src="@drawable/bg"
android:layout_alignParentEnd="true" />
</RelativeLayout>
干杯!