2017-01-05 16 views
1

現在、私はdrawerlayoutを持つ透明なツールバーを持っています。それはフレームレイアウトに配置されているので、引き出しレイアウトはツールバーによってオーバーラップしていますが、下に配置したいのです。ドロワーレイアウトの透明なツールバー

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    > 

    <android.support.v4.widget.DrawerLayout 
     android:id="@+id/drawer_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     > 
     <!-- Framelayout to display Fragments --> 
     <FrameLayout 
      android:id="@+id/frame_container" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent"></FrameLayout> 

     <!-- Listview to display slider menu --> 
     <ListView 
      android:id="@+id/list_slidermenu" 
      android:layout_width="240dp" 
      android:layout_height="match_parent" 
      android:layout_gravity="start" 
      android:choiceMode="singleChoice" 
      android:divider="@color/list_divider" 
      android:dividerHeight="1dp" 
      android:listSelector="@drawable/list_selector" 
      android:background="@color/list_background"/> 

    </android.support.v4.widget.DrawerLayout> 
    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:minHeight="?attr/actionBarSize" 
     android:background="@color/tb_background" 
     app:theme="@style/TransparentToolbar" 
     app:titleTextAppearance="@style/Toolbar.TitleText" 
     > 
    </android.support.v7.widget.Toolbar> 
</FrameLayout> 

どうすれば透明なツールバーがdrawerlayoutと重ならないようにすることができますか?

+0

スクリーンショットをしてください追加しますか? – xFighter

+0

ツールバーがdrawerlayoutに重ならないようにしたい – user7346168

+0

スクリーンショットを追加する – xFighter

答えて

0

まずは、引き出しレイアウト用に余分なフレームレイアウトは必要ありません。以下のようにレイアウトに合わせてください。それは余分なコーディングからあなたを節約し、あなたのアプリに他の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" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/drawer_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

    <!-- this is the main content view --> 
    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:minHeight="?attr/actionBarSize" 
     android:background="@color/tb_background" 
     app:theme="@style/TransparentToolbar" 
     app:titleTextAppearance="@style/Toolbar.TitleText" /> 

     <FrameLayout 
      android:id="@+id/content_frame" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:foreground="?android:windowContentOverlay" /> 
    </LinearLayout> 

    <!-- you used here listView --> 
    <!-- this is the navigation --> 
    <android.support.design.widget.NavigationView 
     android:id="@+id/navigation_view" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="true" 
     app:headerLayout="@layout/navigation_header" 
     app:menu="@menu/navigation_menu" /> 

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

以下の公式ドキュメントは、次のとおりです。あなたがToolbarFrameLayoutを使用して、ルートレイアウトとしてDrawerLayoutを維持し、その中にする必要があります

Creating Navigation Drawer

NavigationView

0

を。このような

何か:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
> 

<FrameLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    > 
    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:minHeight="?attr/actionBarSize" 
     android:background="@color/tb_background" 
     app:theme="@style/TransparentToolbar" 
     app:titleTextAppearance="@style/Toolbar.TitleText" 
     > 
    </android.support.v7.widget.Toolbar> 
    <!-- Framelayout to display Fragments --> 
    <FrameLayout 
     android:id="@+id/frame_container" 
     android:layout_marginTop="?attr/actionBarSize" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"></FrameLayout> 

</FrameLayout> 

<!-- Listview to display slider menu --> 
    <ListView 
     android:id="@+id/list_slidermenu" 
     android:layout_width="240dp" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:choiceMode="singleChoice" 
     android:divider="@color/list_divider" 
     android:dividerHeight="1dp" 
     android:listSelector="@drawable/list_selector" 
     android:background="@color/list_background"/> 

</android.support.v4.widget.DrawerLayout> 
関連する問題