2016-05-24 210 views
2

我看過類似的問題,並嘗試了一些東西,但沒有一個工作。我有一個MainActivity,其佈局包含導航抽屜片段和FrameLayout,我用它來替換我的片段。當我點擊導航抽屜片段上的一個項目時,我想要替換FrameLayout中的第一個片段。問題在於替換操作之後,我的碎片出現在舊碎片的頂部,舊碎片未被移除。Android片段替換放在頂部的片段,不會刪除舊片段

下面是用於將第一片段代碼時MainActivity啓動:

 protected void onCreate(Bundle savedInstanceState) { 
      super.onCreate(savedInstanceState); 
      setContentView(R.layout.activity_main); 

      OptionsFragment mFragment = new OptionsFragment(); 

      FragmentManager manager = getSupportFragmentManager(); 
      FragmentTransaction transaction = manager.beginTransaction(); 

      transaction.replace(R.id.container, new OptionsFragment(), OPTIONS_TAG).commit(); 

這是發生在NavigationDrawerFragment文件替換操作:

public void onNavigationDrawerItemSelected(int position) { 

      Fragment fragment; 

      fragment = getFragmentManager().findFragmentByTag(MainActivity.OPTIONS_TAG); 
      if(fragment != null) 
       getFragmentManager().beginTransaction().remove(fragment).commit(); 
      switch (position) { 
       case 0: 
        fragment = getFragmentManager().findFragmentByTag(MainActivity.LOGIN_TAG); 
        if (fragment == null) { 
         fragment = new LoginFragment(); 
        } 
        getFragmentManager().beginTransaction().replace(R.id.container, fragment, MainActivity.LOGIN_TAG).commit(); 
        closeDrawer(); 
        break; 
     } 
    } 

這裏是XML佈局:

<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" 
    android:id="@+id/main_activity"> 

    <include 
     android:id="@+id/toolbar_actionbar" 
     layout="@layout/toolbar_default" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 

    <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/drawer" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_below="@+id/toolbar_actionbar"> 

     <FrameLayout 
      android:id="@+id/container" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:clickable="true" /> 

     <!-- android:layout_marginTop="?android:attr/actionBarSize"--> 
     <fragment 
      android:id="@+id/fragment_drawer" 
      android:name="com.kristmiha.myportal2.NavigationDrawerFragment" 
      android:layout_width="@dimen/navigation_drawer_width" 
      android:layout_height="match_parent" 
      android:layout_gravity="start" 
      app:layout="@layout/fragment_navigation_drawer" 
      tools:layout="@layout/fragment_navigation_drawer" /> 
    </android.support.v4.widget.DrawerLayout> 
</RelativeLayout> 

enter image description here

+0

我猜你是混合正規'Fragment'類和支持'Fragment'類,所以'FragmentManager'你得到'NavigationDrawerFragment'不支持'FragmentManager',因此不會刪除'OptionsFragment',因爲它不管理它。你在'NavigationDrawerFragment'中導入了哪個'Fragment'類? –

+0

@MikeM。確實如此。我在'NavigationDrawerFragment'類中擴展'Fragment'而不是'FragmentActivity'。有沒有辦法從'MainActivity'訪問支持'Fragment'?我正在使用我在互聯網上爲導航抽屜找到的一段代碼,並且擴展到'FragmentActivity'會給我其他錯誤。 – user3484582

+1

不,你確實希望它擴展'Fragment',只要確保它是'android.support.v4.app.Fragment',而不是'android.app.Fragment'。檢查你的'import'語句。 –

回答

0

我希望它的工作原理:https://stackoverflow.com/a/38470075/6291068

android:background="#ffffff" 
+1

嗨,如果你覺得你以前的解決方案適合這個問題,那麼你可以標記爲重複,並提供舊的問題的鏈接。 – Raju