我想加載片段佈局按鈕點擊活動。當我這樣做時,它成功地重定向到片段,但事情是片段佈局與活動佈局重疊。請幫幫我。從活動佈局重疊的負載片段
這是我的活動佈局
<RelativeLayout 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"
tools:context="info.androidhive.materialtabs.fragments.OneFragment">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:id="@+id/linearLayout7"
android:layout_alignTop="@+id/linearLayout6"
android:layout_toEndOf="@+id/linearLayout6">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView14"
android:layout_marginLeft="25dp"
android:layout_marginTop="1dp"
android:layout_marginRight="10dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView15"
android:layout_marginLeft="200dp" />
</LinearLayout>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
這是我的片段佈局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context="info.androidhive.materialtabs.fragments.OneFragment">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="three"
android:textSize="40dp"
android:textStyle="bold"
android:id="@+id/Add"
android:layout_centerInParent="true"/>
的ThreeFragment擴展片段,並在內部按鈕活動點擊這是我怎麼加載分數。沒有錯誤發生,唯一的意見是重疊的。
AddPlan.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
Fragment fragment = new FourFragment();
fragmentTransaction.add(R.id.fragment_container, fragment);
fragmentTransaction.commit();
}
});
組後臺的佈局會做的伎倆爲您 –
我都試過,但不是我想要什麼,我想完全取代從片段 –
活動佈局@SiluniUpeksha然後用替換而不是增加,而片段的交易。 –