我需要 2 个相对布局在父布局中重叠。我不确定父布局应该是什么,但我认为它必须是 FrameLayout。
<FrameLayout>
<RelativeLayout id=layout_one>
<Button></Button>
<ImageView></ImageView>
...
</RelativeLayout>
<RelativeLayout id=layout_two>
<Button id = a></Button>
<Button id = b></Button>
...
</RelativeLayout>
</FrameLayout>
一次只能看到一个RelativeLayouts。起初它是“layout_two”。然后当按钮“a”被点击时,“layout_two”需要不可见并且“layout_one”必须出现。但是,单击 Button a 不会调用 onClick 方法,尽管我可以看到该按钮。有没有更好的方法来做我想做的事情?