这是我的用例:
我想在运行时更改我的膨胀布局,比如说我先膨胀a布局,然后过一段时间后我要显示b布局,然后c布局等等.
我读了一些地方,而不是在主要布局中包括布局,然后隐藏/取消隐藏,我应该使用viewstub和inflate.
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:id="@+id/layout_stub"
android:layout_width="match_parent"
android:layout_height="match_parent" />
我现在的问题是,当我为第一个布局充气时,它可以正常工作,但是下次,当我尝试为第二个布局充气时,则存根为null.
ViewStub stub = (ViewStub) findViewById(R.id.layout_stub);
stub.setLayoutResource(layoutId);
View inflated = stub.inflate();
我的理解是Viewstub是一个在其中加载布局的容器,如果有的话
为什么在尝试加载第二个布局时没有得到ViewStubw?
(因此,这意味着当我放大第一个布局(A)时,放置ViewStub的布局已被完全删除吗?)
我正在寻找使用Viewstub或替代品实现用例的任何指针