我正在使用 MvRx 并试图通过在一个屏幕上实例化片段的两个实例来理解一个概念。我认为问题出在我的 XML 中,因为无论我做什么,我都只会得到一个片段实例。任何帮助都是极好的。
活动主.xml:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
android:id="@+id/container"
tools:context=".MainActivity">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container1"
>
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container2"
>
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt:
package com.example.mvrxtutorial
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
if (savedInstanceState == null) {
supportFragmentManager.beginTransaction()
.replace(R.id.container1, MainFragment())
.replace(R.id.container2, MainFragment())
.commit()
}
}
}