0

我有一个FrameLayout包含两个RelativeLayouts. 当我尝试在 ADT 中使用图形布局选项卡时,只有第二个中的两个 ImageViewRelativeLayout是可选的。布局如下所示:

<FrameLayout>
    <RelativeLayout>

        <ScrollView>
            <TextView/>
        </ScrollView>

        <ImageView/>

        <ScrollView>
            <TextView/>
        </ScrollView>
    </RelativeLayout>

    <RelativeLayout>
        <ImageView/>

        <ImageView/>
    </RelativeLayout>
</FrameLayout>

无论我在哪里单击,它都会选择整个第二个RelativeLayout本身,并且不能单击第一个中的任何单个视图RelativeLayout

有没有办法循环浏览视图/布局,以便我可以编辑我在屏幕上看到的内容?或者这是编辑器的错误/限制?

4

1 回答 1

0

一种非常笨拙的方法是:

  1. 切换到文本编辑器选项卡。

  2. 在要编辑的视图 XML 中移动光标。

  3. 切换回图形编辑器并选择元素。

于 2012-08-14T02:50:21.380 回答