我在我的应用程序中将透明布局显示为viewstub。
ViewStub newview = (ViewStub) findViewById(R.id.newstb);
mButtonSave.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (shouldShowInstructions()) {
// Shows the instructions view and returns
newview.setVisibility(View.VISIBLE);
mIsShowingIntsructions = true;
return;
} else {
// some execution
}
}
});
它在按钮单击时正确显示。这是xml:
</LinearLayout>
<ViewStub
android:id="@+id/newstb"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout="@layout/new_overlay"
android:visibility="gone" />
</RelativeLayout>
现在,当用户旋转屏幕时,我想从 layout-land 获取 xml。两个 xml 的名称都是 new_overlay.xml。我认为它会作为android的属性自动完成。但没有运气。有人可以帮助我吗?