ConstraintLayout 的 ViewStub inflation

ViewStub inflation of ConstraintLayout

我想利用 ViewStub to optionally show a portion of UI. When the root of my inflated item is ConstraintLayout 然后它不呈现。

但如果该根是 MaterialCardView,则它会按预期显示。

<!-- my_fragment.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"
    android:id="@+id/fragmentRootLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ViewStub
        android:id="@+id/fragmentViewStub"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inflatedId="@+id/fragmentViewStub"
        android:layout="@layout/item"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<!-- item.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"
    android:id="@+id/itemRootLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <com.google.android.material.textview.MaterialTextView
        android:id="@+id/itemLabel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/itemLabelText"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
/* MyFragment.kt */

@AndroidEntryPoint
class MyFragment : Fragment(R.layout.my_fragment) {
    private val viewModel: MyViewModel by viewModels()

    private val viewBinding: MyFragmentBinding by viewLifecycleLazy {
        MyFragmentBinding.bind(requireView())
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        viewBinding.fragmentViewStub.inflate()
    }
}

我试过 and 但都没有解决问题。

让这些部分协同工作时我忽略了什么?

忘记更新我的 answer/oversight。在这两种情况下,这一直都按预期工作。

夜间模式已启用,MaterialCardView 的行为在卡片和内容之间自动形成对比。同时,当 ConstraintLayout 反转其主题时,标签 似乎 丢失但确实存在,如白色背景上的白色文本。