この質問をする前に、他の投稿をたくさん見ました。明確な解決策があるようには見えませんでした。
ViewStub が膨張しているかどうか (表示されているかどうか) を確認したい ViewStub で問題が発生しています。それを踏まえて、他にもやりたいことがたくさんあります。
私は2つのViewStubを使用しており、各ViewStubレイアウト、つまりlayout/abcとlayout/defにあるボタンは、他のViewStubを膨らませます。
<ViewStub
android:id="@+id/abc_stub"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout="@layout/abc" />
<ViewStub
android:id="@+id/def_stub"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout="@layout/def" />
私が直面している問題は、膨張していないViewStubがnullであると予想しているのにnullではないことです。
不足しているものはありますか?