是否有可能删除片段而不用另一个片段替换它?

时间:2014-12-09 17:56:41

标签: android android-fragments navigation-drawer preferencefragment

我在Drawer的内容框架中使用带有NavigationDrawer的ActionBarActivity和ListView。

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/lyt_list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <ListView
            android:id="@+id/list_notes"
            android:layout_width="0dip"
            android:layout_height="fill_parent"
            android:layout_weight="1"       >
        </ListView>
    </LinearLayout>
</FrameLayout>

<FrameLayout
    android:id="@+id/drawer_frame"
    android:layout_width="240dp"
    android:layout_height="fill_parent"
    android:layout_gravity="start"
    android:layout_weight="1" >

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/darkGray"
        android:choiceMode="singleChoice"/>
     </FrameLayout>

我从其中一个Drawer项打开PreferenceFragment:

  FragmentTransaction transaction = getFragmentManager().beginTransaction();
                PrefsFragment prefs = new PrefsFragment();
                transaction.add(R.id.content_frame, prefs);
                transaction.addToBackStack(null);
                transaction.commit();

这是我的PrefsFragment:

public class PrefsFragment extends Fragment {

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);
    getActivity().getFragmentManager().beginTransaction()
            .replace(R.id.content_frame, new PrefsFr())
            .commit();
}


public class PrefsFr extends PreferenceFragment {


    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);          
        addPreferencesFromResource(R.xml.preferences);
      ...  }
}

}

但我无法删除此片段。 当我切换到另一个Drawer项目时; PreferenceFragment保留在具有tranceparent background的content_frame中的ListView之上。

ActionBarActivity是否有可能删除片段而不用其他片段替换片段? 如果不是这样,如何使用PreferenceFragment for api&gt; 11?唯一的方法是用彼此替换片段是真的吗?

1 个答案:

答案 0 :(得分:2)

  

在ActionBarActivity中是否可以删除片段而不用另一个片段替换它?

是的,您可以使用FragmentTransaction#remove(Fragment)

然而,潜在的问题是您使用transaction.add(R.id.content_frame, prefs);显示PreferenceFragment。如果您只希望PreferenceFragment显示其背后的ListView,则应使用replace()代替。