如何在弹出式窗口中使用新布局,但在后台使用旧布局?
此外,我想在第一个布局上有一个按钮,基于if语句调用第二个布局,使用类似的东西
"if Button has a background, button open new layout, if not null"
答案 0 :(得分:1)
您可以使用Dialog创建弹出窗口。例如,在您的活动onCreate()方法中设置一个新对话框,并使用XML正常指定布局。
Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.--);
然后只需在显示弹出窗口时调用dialog.show()
。