我有我认为的简单布局。这包含一个滚动视图,其中包含一个水平滚动视图,因此我可以双向滚动。我已经简化了这个例子,所以它只有一个包含一个TextView 和另一个RelativeLayout 的RelativeLayout。这是 XML:
<HorizontalScrollView
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="false"
android:scrollbarAlwaysDrawHorizontalTrack="true"
android:fillViewport="true">
<RelativeLayout
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/myText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEXT LABEL" />
<RelativeLayout
android:id="@+id/relativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/myText">
<Button android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/button1"
android:layout_above="@+id/button1"
android:text="2"/>
<Button android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"/>
<Button android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:text="3"/>
</RelativeLayout>
</RelativeLayout>
</HorizontalScrollView>
</ScrollView>
我可以看到按钮 1 和 3,但我没有看到按钮 2。不幸的是,我需要这样做,因为页面是动态构建的(这个 xml 是我正在做的简化版本)而且我只知道我需要什么被留下。我让它在某个时候工作,但不得不重新安排一些其他代码并且它坏了。我错过了什么?
这是快照的链接:快照