2016-05-08 12 views
1

簡単なアプリを開発していて、ツールバーを調整しているので、ツールバーの上にナビゲーションドロワーが混ざりません。問題は今、ツールバーが通知バーに影を投げることです。Androidツールバーのキャストシャドウを通知バーに表示

このシャドウを削除するにはどうすればよいですか?

enter image description here

ここに私のレイアウトです:

<android.support.design.widget.CoordinatorLayout 
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:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
tools:context=".activities.MainActivity"> 

<!-- Toolbar --> 
<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="?attr/colorPrimary" 
     app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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

<!-- Navigation Drawer Layout --> 
<android.support.v4.widget.DrawerLayout 
    android:id="@+id/drawer_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginTop="?attr/actionBarSize" 
    tools:openDrawer="start"> 

    <!-- Real content --> 
    <FrameLayout 
     android:id="@+id/main_content" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

    <!-- Navigation Drawer Item --> 
    <android.support.design.widget.NavigationView 
     android:id="@+id/nav_view" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:layout_marginTop="-24dp" 
     app:menu="@menu/navigation_drawer_items" /> 

</android.support.v4.widget.DrawerLayout> 

答えて

0

簡単にレイアウトの上に引き出しレイアウトを入れて!公式docから

<!-- Navigation Drawer Layout --> 
    <android.support.v4.widget.DrawerLayout 
     android:id="@+id/drawer_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_marginTop="?attr/actionBarSize" 
     tools:openDrawer="start"> 

    <android.support.design.widget.CoordinatorLayout 
    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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context=".activities.MainActivity"> 

    <!-- Toolbar --> 
    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

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



     <!-- Real content --> 
     <FrameLayout 
      android:id="@+id/main_content" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" /> 

     <!-- Navigation Drawer Item --> 
     <android.support.design.widget.NavigationView 
      android:id="@+id/nav_view" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:layout_gravity="start" 
      android:layout_marginTop="-24dp" 
      app:menu="@menu/navigation_drawer_items" /> 

    </android.support.v4.widget.DrawerLayout> 
+0

これが役に立ちましたか? –

1

は、ナビゲーションドロワーを追加するには、レイアウトのルートビューとしてDrawerLayoutオブジェクトとユーザーインターフェースを宣言します。 DrawerLayoutの内部には、画面のメインコンテンツ(ドロワが隠されている場合のプライマリレイアウト)とナビゲーションドロワーの内容を含む別のビューを含むビューを1つ追加します。

DrawerLayoutは、レイアウトのルート項目である必要があります。

関連する問題