我有个问题。
我用 2 个 ViewStub 在两个区域滑动我的屏幕。
但是,如果我对 ViewStubs 进行膨胀,它们将不再可访问,并且我无法在此 ViewStub 中膨胀其他视图。
那么使用这些容器的替代方法是什么。
这里有一些代码。你们都喜欢代码:
ViewStub contentSpace = (ViewStub) findViewById(R.id.ContentSpace);
contentSpace.setLayoutResource(R.layout.view1);
contentSpace.inflate();
contentSpace.setInflatedId(R.id.Content);
RelativeLayout content = (RelativeLayout) findViewById(R.id.Content);
contentSpace.setLayoutResource(R.layout.view1); //crash
contentSpace.inflate();