私はこれを正しく説明したいと思います。基本的には、左側にナビゲーションバーを持つ基本的なAndroidアプリがあります。コンテンツページのレイアウトは、選択した内容に基づいて変更しようとしています。Androidで複数のレイアウトを参照する方法は?
私がしたことは、アプリケーションのメインレイアウトに両方のレイアウトを含めることでしたが、ナビゲーションバーから選択しようとすると、レイアウトは互いの上にあります。
私はそれらのお互いの上に横たえないようにするためのポインタを得ることができますか?私はこれに正しくアプローチしていますか?
は、ここに私のxmlです:
<?xml version="1.0" encoding="utf-8"?>
<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="com.test.justforfun.MainActivity">
<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>
<include layout="@layout/content_main" />
<include layout="@layout/content_second"/>
</android.support.design.widget.CoordinatorLayout>
使用ナビゲーションバー –