我想将图像设置为工具栏的背景,图像缩放以适合。由于某种原因,图像只是在工具栏下方呈现。而且我不确定为什么。任何帮助都会非常感激。我尝试过很多人在网上建议的方式,而不是他们产生我想要的结果。
另外:以编程方式设置背景具有相同的结果。
这是我的视图代码,背景设置为图像
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/main_nav_drawer_layout"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/main_nav_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="@drawable/header_bg"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<FrameLayout
android:id="@+id/app_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:id="@+id/main_nav_view"
android:background="#D3D2D2"
app:itemBackground="@drawable/style_menu_bg_color"
app:menu="@menu/main_menu"
app:headerLayout="@layout/main_menu_header"
app:itemTextColor="@drawable/style_menu_text_color"
app:itemIconTint="@drawable/style_menu_text_color" />
</android.support.v4.widget.DrawerLayout>
我也用这种方式在ToolBar中使用ImageView进行了尝试
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/main_nav_drawer_layout"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/main_nav_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/header_bg"/>
</android.support.v7.widget.Toolbar>
<FrameLayout
android:id="@+id/app_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:id="@+id/main_nav_view"
android:background="#D3D2D2"
app:itemBackground="@drawable/style_menu_bg_color"
app:menu="@menu/main_menu"
app:headerLayout="@layout/main_menu_header"
app:itemTextColor="@drawable/style_menu_text_color"
app:itemIconTint="@drawable/style_menu_text_color" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
我能够弄明白并为我的方案工作。我添加了一个相对布局,在工具栏上方有一个图像视图(在代码中,而不是实际的屏幕位置),然后使工具栏的背景透明并相应缩放。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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:id="@+id/main_nav_drawer_layout"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageViewplaces"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/header_bg"
android:maxHeight="?attr/actionBarSize"
android:scaleType="fitXY" />
<android.support.v7.widget.Toolbar
android:id="@+id/main_nav_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="#00FFFFFF"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</RelativeLayout>
<FrameLayout
android:id="@+id/app_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:id="@+id/main_nav_view"
android:background="#D3D2D2"
app:itemBackground="@drawable/style_menu_bg_color"
app:menu="@menu/main_menu"
app:headerLayout="@layout/main_menu_header"
app:itemTextColor="@drawable/style_menu_text_color"
app:itemIconTint="@drawable/style_menu_text_color" />
</android.support.v4.widget.DrawerLayout>