Как я должен правильно поместить некоторый фрагмент в FrameLayout в mainActivity? - PullRequest
0 голосов

Я пытаюсь поместить фрагмент в FrameLayout MainActivity, нажав кнопку в MainActivity. Это почти работает, но содержимое MainActivity FrameLayout не заменяется содержимым фрагмента, а добавляется к нему. Вопрос в том, как это исправить?

Мой класс MainActivity

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        Button btn = findViewById(R.id.pushMeBtn);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                FragmentManager f_m = getSupportFragmentManager();
                FragmentTransaction f_t = f_m.beginTransaction();

                f_t.replace(R.id.container_layout, new Fragment1()).addToBackStack(null).commit();
            }
        });
    }
}

Моя деятельность_основная.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"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/container_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/pushMeBtn"
            android:text="push me"
            android:layout_gravity="center"/>
    </FrameLayout>
</RelativeLayout>

Мой фрагмент1 класс

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

Мой фрагмент.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="match_parent"
    android:background="@color/colorPrimary">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="339dp"
        android:gravity="center"
        android:text="fragment1"
        android:textSize="25sp"/>
</RelativeLayout>
...