android:在CoordinatorLayout中替换片段容器

时间:2016-06-06 23:05:47

标签: android android-fragments

我有以下XML:

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

<!--I use this include as container with the FrameLayout below-->
<!--<include layout="@layout/content_main" />-->
<FrameLayout
    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/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.improvemybrand.MainActivity"
    tools:showIn="@layout/app_bar_main">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />
</FrameLayout>

<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_input_add" />

问题很简单:

当我尝试从我的协调器替换容器FrameLayout时,它不起作用,它显示新片段但保留旧片段,在我的简单示例中,带有Hello世界的TextView将保留。

要替换,我使用以下代码:

FragmentManager fragmentManager = getSupportFragmentManager();
        FragmentTransaction transaction = fragmentManager.beginTransaction();
        transaction.replace(R.id.content_main, fragment);
        transaction.commit();

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

FragmentTransaction仅与Fragment及其View s进行交易。您在布局中定义的TextView不是Fragment View的{​​部分},因此它不会受{{1}影响并且,您的代码段中的FragmentTransaction只会添加到其上。

您有几个选择。您可以在执行交易时隐藏或删除Fragment。这可能是首选,如果您最初需要的只是简单的TextView,并且将其粘贴在TextView中可能会有点矫枉过正。您还可以在Fragment的布局上设置不透明背景,这将有效隐藏Fragment

然而,最好的选择是将TextView放在启动时加载的另一个TextView的布局中。然后,后续交易将根据您的预期更换/删除。请注意,您希望在运行时替换/删除的任何Fragment必须在代码中动态加载。也就是说,无法在Fragment布局的<fragment>元素中定义它们。

答案 1 :(得分:0)

您应该将TextView移动到Fragment的布局中。

像这样。

fragment_hello_world.xml

private void searchTerms_TextChanged(object sender, EventArgs e)
    {
        BindingSource bs = new BindingSource();
        bs.DataSource = shareholderDataGrid.DataSource;
        bs.Filter = string.Format(searchItem + " like '%{0}%'", searchTerms.Text.Trim().Replace("'", "''"));
        shareholderDataGrid.DataSource = bs;
    }

HelloWorldFragment

{{1}}