单击按钮android替换片段

时间:2015-12-03 12:05:06

标签: android android-fragments

我正在尝试在我的Android应用程序上创建一个可交换的fragements

片段中只有一半似乎正在取代 截图:

screenshot

main的xml文件是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main"
tools:context=".MainActivity"
android:id="@+id/contentlayout">
<fragment
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:id="@+id/header_menufragment"
    class="com.example.www.newapp.header_menu" />
<fragment
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/dynamicfragment"
    class="com.example.www.newapp.mainfragment"/>

</LinearLayout>

单击“项目”按钮后,整个dynamicfragment应被projectfragment替换。

project.setOnClickListener(new View.OnClickListener() {
          @Override
         public void onClick(View v) {
              getFragmentManager()
                      .beginTransaction()
                      .replace(R.id.dynamicfragment, new projectfragment())
                      .addToBackStack(null)
                      .commit();
         }
     });

projectfragment班有

public class projectfragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_project, container,false);
    }
   }

布局文件是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:background="@color/colorDarkRed">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:layout_weight=".5">
    <ImageButton
        android:id="@+id/img1"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1" />
     <ImageButton
        android:id="@+id/img2"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_weight="1" />
</LinearLayout>

<ImageButton
    android:id="@+id/img3"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:src="@drawable/imgfile"/>


</LinearLayout>

请帮我解决这个问题。

2 个答案:

答案 0 :(得分:0)

您无法替换布局文件中静态定义的片段。您只能替换通过FragmentTransaction动态添加的片段。

使用FrameLayout作为容器,并在其中替换Fragment

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <FrameLayout android:id="@+id/fragment_container" android:layout_weight="1"
            android:layout_width="match_parent" android:layout_height="match_parent" />

</LinearLayout>

在活动上添加片段与您一样:

getFragmentManager()
     .beginTransaction()
     .replace(R.id.fragment_container, new projectfragment())
     .addToBackStack(null)
     .commit();

有关详细信息,请参阅以下链接:
link1
link2

答案 1 :(得分:0)

对我有用的尝试

WishaFriend ff = new WishaFriend();

                                android.app.FragmentManager fm = getActivity().getFragmentManager();
                                android.app.FragmentTransaction ft = fm.beginTransaction();
                                ft.replace(((ViewGroup) getView().getParent()).getId(), ff);
                                ft.commit();
                                dialog.dismiss();

尝试添加此

ft.replace(((ViewGroup) getView().getParent()).getId(), ff);