2015-10-15 170 views
2

我在Android Studio中生成了新的Android項目,其中我選擇了帶有片段的空白活動的新模板,我發現它的結構與舊的不同。它使用標籤和CoordinatorLayout。那麼我應該如何在這個包含標籤內切換佈局呢?替換包含佈局

<?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=".MainActivity"> 

    <android.support.design.widget.AppBarLayout android:layout_height="wrap_content" 
     android:layout_width="match_parent" 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" /> 

    <android.support.design.widget.FloatingActionButton android:id="@+id/fab" 
     android:layout_width="wrap_content" android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" 
     android:src="@android:drawable/ic_dialog_email" /> 

</android.support.design.widget.CoordinatorLayout> 
+0

只需放置您的佈局代碼並刪除包含如果您不想包含 – Pavan

+0

您的@ layout/content_main有什麼內容? –

+0

簡單的佈局,如登錄和註冊形式,我知道我可以把佈局,但我喜歡它的方式。所以它分離在不同的文件 – HyperX

回答

0

別擔心。

您只需在content_main.xml文件內完成所有設計。

它將被包含在activity_main.xml文件中,該文件是您的活動的主要佈局。

+1

是的,我知道,但如果我想要programaticaly將此content.xml更改爲content2.xml? – HyperX

+0

請你詳細說明一下嗎? –

3

用容器替換include例如, FrameLayout。在運行時充氣您想要添加的佈局,並在容器上調用addView。若要替換已有的內容,請撥removeView,然後addView與新內容

+0

如果我想爲每個片段設置不同的工具欄,該怎麼辦?內容會改變,但工具欄將保持不變? – user3289108

+0

@ user3289108,它確實會保持不變 – Blackbelt

+0

但是,如果我想有不同的工具欄,那我該怎麼辦?我剛纔提出了一個問題。你可以看看這個http://stackoverflow.com/questions/34760818/different-toolbar-for-each-fragment-in-new-coordinator-layout – user3289108