片段交易

时间:2015-10-29 17:38:21

标签: android android-fragments android-framelayout

我有一个带浮动操作按钮的ListFragment。单击该按钮时,我想用CreateListFragment替换ListFragment。相反,CreateListFragment放在ListFragment之上,ListFragment中的按钮和textview仍然可见。我不确定出了什么问题。如何使用CreateListFragment完全替换ListFragment?

这是点击按钮之前的屏幕截图 http://i.stack.imgur.com/k2HxP.png

点击按钮后的屏幕截图 http://i.stack.imgur.com/TYN47.png

list_fragment

    <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
        android:id="@+id/listFrame">

    <android.support.v7.widget.RecyclerView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    <android.support.design.widget.FloatingActionButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/fab"
        android:layout_gravity="bottom|end"
        app:backgroundTint="@color/colorAccent"
        android:src="@drawable/create"/>
    <TextView
            android:id="@+id/tvEmpty"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:hint="No Shopping Lists Yet"
            android:layout_gravity="center"
            android:textSize="20sp"/>


</FrameLayout>``

createlist_fragment

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:tools="http://schemas.android.com/tools"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:padding="10dp"
         tools:context="com.lavineoluoch.helloworld.swiftpay.app.CreateListFragment">
<LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
<EditText
        android:id="@+id/etListTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/title"/>
<EditText
        android:id="@+id/etAddItem"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/items"/>
<RelativeLayout
        android:id="@+id/buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
    <Button
            android:id="@+id/btnEditItem"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/btnEdit"
            android:background="@color/colorPrimary"
            android:textColor="@color/white"
            />
</RelativeLayout>


</LinearLayout>

ListFragment.java

  @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    final View view = inflater.inflate(R.layout.list_fragment, container, false);
    fab = (FloatingActionButton)view.findViewById(R.id.fab);

    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

           CreateListFragment createListFragment = new CreateListFragment();
            android.support.v4.app.FragmentTransaction fragmentTransaction = getActivity().getSupportFragmentManager().beginTransaction();
            fragmentTransaction.replace(R.id.listFrame,createListFragment);
            fragmentTransaction.commit();
        }
    });
    return view;
}

1 个答案:

答案 0 :(得分:0)

在Fragments的根视图中插入以下代码行:

android:background="?android:windowBackground"

当您看到背景时,您的视图仍然可以看到已更换片段的回忆,因为视图尚未更新。

上面的答案可以解决您的问题,但我建议您重新构建您的方法,而是在按下FAB时启动包含CreateListFragment的新Activity。这样做会使代码更容易维护,也更容易阅读,也是最佳实践。这也意味着用户可以按下他们的后退按钮并导航回ListActivity / ListFragment,而无需手动处理Fragment后台堆栈。