2016-11-14 13 views
0

the toolbar is overlappigはどのようにツールバーの影を削除するには、それは、オーバーラップのように見えない

ツールバーとアクションバーのための私のコード:

<android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="#00000000" 
     android:theme="@style/AppTheme.AppBarOverlay" 


     > 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" /> 

    </android.support.design.widget.AppBarLayout> 

は、私はアプリを追加する場合:アプリケーションバー上の標高=「0dp」メニューが消えます。

答えて

0

この

<View xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="@dimen/statusBarHeight" 
    android:background="@color/accueil_colorDark" 
    android:elevation="@dimen/statusBarElevation"/> 

<android.support.v7.widget.Toolbar 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:popupTheme="@style/AppThemeAccueilToolbar" 
    android:theme="@style/AppThemeAccueilToolbar" 
    android:id="@+id/toolbarAccueil" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:minHeight="?attr/actionBarSize" 
    materialdesign:elevation="0dp" 
    android:elevation="0dp" 
    android:outlineProvider="background" 
    android:layout_marginTop="@dimen/appBarTopMargin" > 

</android.support.v7.widget.Toolbar> 

を試してみてください
関連する問題