2017-02-03 15 views
0

Я хочу, чтобы изображение было фоном для моей панели инструментов, с изображением, масштабированным для соответствия. По какой-то причине изображение просто отображается под панелью инструментов. и я не уверен, почему. Любая помощь будет очень признательна. Я пробовал много способов, которые люди предлагали онлайн, и не из них дают результат, который я ищу.Xamarin Android - Установить фон панели инструментов как изображение, не работает как ожидалось

Также: Программный вариант установки программного обеспечения имеет тот же результат.

Вот мой взгляд код с фоном установлен на изображение

<?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> 

Я также попытался это так с ImageView в ToolBar

<?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> 

enter image description here

ответ

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> 

enter image description here