我有一个FrameLayout
包含两个RelativeLayouts
. 当我尝试在 ADT 中使用图形布局选项卡时,只有第二个中的两个 ImageViewRelativeLayout
是可选的。布局如下所示:
<FrameLayout>
<RelativeLayout>
<ScrollView>
<TextView/>
</ScrollView>
<ImageView/>
<ScrollView>
<TextView/>
</ScrollView>
</RelativeLayout>
<RelativeLayout>
<ImageView/>
<ImageView/>
</RelativeLayout>
</FrameLayout>
无论我在哪里单击,它都会选择整个第二个RelativeLayout
本身,并且不能单击第一个中的任何单个视图RelativeLayout
。
有没有办法循环浏览视图/布局,以便我可以编辑我在屏幕上看到的内容?或者这是编辑器的错误/限制?