0

我有一個控制多個片段的活動(導航控制器)。用戶看到的初始屏幕是放置在一個容器中的單個片段。當我點擊一個按鈕到不同的片段時,我需要將第一個片段添加到backstack中,並將兩個新的片段添加到不同於第一個的容器中。這兩個片段是頂部的地圖片段,底部是剖面細節片段這甚至可能嗎?替換多個片段的單個片段

代碼如下。

導航控制器主頁片段(這是主屏幕應用程序啓動時):

public void home(Bundle savedInstanceState){ 
    FragmentManager fm = getFragmentManager(); 
    FragmentTransaction fragmentTransaction = fm.beginTransaction(); 
    if (findViewById(R.id.fragment_container) != null) { 
     if (savedInstanceState != null) { 
      return; 
     } 
     // Create a new Fragment to be placed in the activity layout 
     CurrentFriendsFragment firstFragment = new CurrentFriendsFragment(); 
     // Add the fragment to the 'fragment_container' FrameLayout 
     fragmentTransaction 
       .setCustomAnimations(R.animator.fade_in, R.animator.fade_out) 
       .replace(R.id.fragment_container, firstFragment, "firstFragment") 
       .commit(); 
    } 
} 

導航控制器文件片斷:

@Override 
public void onProfileButtonClicked() { 
    FragmentManager fm = getFragmentManager(); 
    FragmentTransaction fragmentTransaction = fm.beginTransaction(); 
    if (findViewById(R.id.fragment_container) != null) { 
     if (savedInstanceState1 != null) { 
      return; 
     } 

     MapFragment mapFragment = new MapFragment(); 
     // Create a new Fragment to be placed in the activity layout 
     ProfileFragment profileFragment = new ProfileFragment(); 
     // Add the fragment to the 'fragment_container' FrameLayout 
     fragmentTransaction 
       .setCustomAnimations(R.animator.slide_in_up, R.animator.slide_out_up, R.animator.slide_in_down, R.animator.slide_out_down) 
       .add(R.id.fragment_container_bottom_large, profileFragment) 
       .add(R.id.fragment_container_top_small, mapFragment) 
       .commit(); 

    } 
} 

這裏是主要活動的xml文件。注意三個不同的容器。用於全屏幕片段的「fragment_container」,用於一個頁面上的多個片段的「fragment_container_top_small」,「fragment_container_bottom_large」。

<?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:id="@+id/activity_navigation" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context="com.parse.starter.ViewControllers.NavigationController" 
    android:background="@color/palette_darkwhite"> 

    <include layout="@layout/tool_bar" 
     android:id="@+id/toolbar_layout" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:layout_below="@+id/toolbar_layout" 
     android:layout_above="@+id/bottom_navigation_navbar"> 

     <RelativeLayout 
      android:id="@+id/fragment_container_top_small" 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="1"> 
     </RelativeLayout> 

     <FrameLayout 
      android:id="@+id/fragment_container_bottom_large" 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="3"> 
     </FrameLayout> 

    </LinearLayout> 

     <FrameLayout 
      android:id="@+id/fragment_container" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_below="@+id/toolbar_layout" 
      android:layout_above="@+id/bottom_navigation_navbar"> 
     </FrameLayout> 

    <FrameLayout 
     android:id="@+id/fragment_container_popup" 
     android:layout_width="275dp" 
     android:layout_height="275dp" 
     android:layout_centerHorizontal="true" 
     android:layout_centerVertical="true"> 
    </FrameLayout> 

    <android.support.design.widget.BottomNavigationView 
     android:id="@+id/bottom_navigation_navbar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:background="@color/palette_lightwhite"> 

     <ImageView 
      android:layout_width="20dp" 
      android:layout_height="20dp" 
      android:layout_gravity="center_horizontal" 
      android:background="@null" 
      app:srcCompat="@drawable/collpaseup" /> 

     <RelativeLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_gravity="center_vertical"> 

      <LinearLayout android:id="@+id/thumbnail2" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:padding="3dp" 
       android:layout_alignParentLeft="true" 
       android:layout_marginRight="5dp"> 


       <de.hdodenhof.circleimageview.CircleImageView 
        android:id="@+id/profile_picture_navbar" 
        android:layout_width="30dp" 
        android:layout_height="30dp" 
        android:layout_gravity="center_vertical" 
        app:civ_border_color="#FF000000"/> 

      </LinearLayout> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_alignTop="@+id/thumbnail2" 
       android:layout_toRightOf="@+id/thumbnail2" 
       android:textColor="@color/palette_primarycolor" 
       android:id="@+id/nameLabel" 
       android:text="Name" 
       android:textSize="15sp" 
       android:textStyle="bold"/> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_below="@+id/nameLabel" 
       android:layout_toRightOf="@+id/thumbnail2" 
       android:textColor="@color/palette_primarycolor" 
       android:id="@+id/locationLabel" 
       android:text="Location" 
       android:textSize="12sp" 
       android:textStyle="bold"/> 

     </RelativeLayout> 

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

</RelativeLayout> 
+0

在另一個(新)活動中託管兩個片段不是更容易嗎? – Gotiasits

+0

它可能是,但這個應用程序的全部重點是隻使用一個活動與多個片段。 –

回答

0

有3個容器,並使用View.GONE使第1個消失,然後View.VISIBLE使其他2出現。

+0

這不會使後臺工作。 – Gotiasits

+0

Gotiasits是正確的。我已經嘗試過這種方法 –

+0

雖然做了類似的事情,但我只是用一個ArrayList的片段構造了我自己的棧(實際上,不是片段本身,而是一個告訴使用哪個片段的整數)。然後,您可以完全控制,只需按下並彈出或操縱您自己顯示的片段即可。 –