我已经看过类似的问题并尝试了一些事情,但没有一个有效。我有一个MainActivity
,其布局包含导航抽屉片段和FrameLayout
,我用它来替换我的片段。当我单击Navigation Drawer片段上的项目时,我想替换FrameLayout
中的第一个片段。问题是在替换操作之后,我的片段出现在旧片段之上,旧片段未被删除。
以下是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>
答案 0 :(得分:0)
我希望它有效:https://stackoverflow.com/a/38470075/6291068
android:background="#ffffff"