2017-05-26 13 views
0

これが最初のアプリのIプログラムであると、私は次のような問題を持っている:私は私のアプリケーションバーを含め、このxmlファイルと私は意志コンテンツで重複活動のレイアウト

<?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" 
    android:fitsSystemWindows="true" 
    tools:openDrawer="start" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

    <include layout="@layout/app_bar_navigation_drawer"/> 

    <include layout="@layout/content_navigation_drawer"/> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/nav_view" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="true" 
     app:headerLayout="@layout/nav_header_navigation_drawer" 
     app:menu="@menu/activity_navigation_drawer_drawer" /> 

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

次のように私のactivity_navigation_drawerが見えますこのaddbarの下に追加します。私は何

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout 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" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="...NavigationDrawerActivity"> 

    <include layout="@layout/activity_function_overview" /> 
</RelativeLayout> 

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout 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="wrap_content" 
    tools:context="...NavigationDrawerActivity"> 

    <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> 
</RelativeLayout> 

content.xml:生憎内容は、全体のアプリケーションバー(言い換えれば、私は2つのレイアウトが重複している含める)

appbar.xmlと重なりますここで間違っている?

答えて

1

appbar.xmlにはverticalのルートレイアウトとしてLinearLayoutを使用してください。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 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="wrap_content" 
     android:orientation="vertical" 
     tools:context="...NavigationDrawerActivity"> 

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

    <!-- Your content layout here --> 

</LinearLayout> 

参考までに、android.support.design.widget.CoordinatorLayoutを追加機能として使用することもできます。

+0

LinearLayoutではなくCoordinatorLayoutを意味しますか? – kerschi

+0

はい、LinearLayoutの代わりにandroid.support.design.widget.CoordinatorLayoutを使用することもできます – FAT

関連する問題