我创建了一个透明ActionBar,我想显示覆盖操作栏的完整图像,但我的图像位于操作栏下方。 I want my image to look like this 但相反,我的图片看起来像My Activity。
透明动作栏的风格
Styles.xml
<style name="AppTheme" parent="AppTheme.Base">
<style name="AppTheme.ActionBar.Transparent" parent="AppTheme">
<item name="colorPrimary">@android:color/transparent</item>
<item name="windowActionBarOverlay">true</item>
</style>
我的活动,我想要显示完整尺寸的图像
Activity
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/containerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
android:weightSum="1">
<include
android:id="@+id/app_bar" /*This is the action bar*/
layout="@layout/appbartransparent"></include>
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/imageView"
android:src="@drawable/views"
android:scaleType="fitXY" />
</LinearLayout>
<fragment
android:id="@+id/fragment_navigation1"
android:name="com.example.asad.homebuyerproject.NavigationBar"
android:layout_width="@dimen/navigationdrawerwidth"
android:layout_height="match_parent"
android:layout_gravity="start"
app:layout="@layout/fragment_navigation"
tools:layout="@layout/fragment_navigation" />
</android.support.v4.widget.DrawerLayout>