我在aHorizontalScrollView
中使用aRelativeLayout
。它在1.6+api上运行良好,但在1.5api上HorizontalScrollView
不会滚动,这是什么问题?
在1.5api(3)上,您只能看到HorizontalScrollView
的第一部分,而且根本没有滚动,而在api4和更高版本上,它似乎工作得很好。
为了回答这个问题,这里有一些代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:id="@+id/pscroll"
android:scrollbars="horizontal"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ad"
android:fillViewport="true"
android:scrollbarAlwaysDrawHorizontalTrack="true">
<LinearLayout android:orientation="horizontal" android:id="@+id/LinearLayout01" android:scrollbars="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageButton android:id="@+id/P1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<ImageButton android:id="@+id/P2" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
最佳答案
编辑:经过改进,基于负面反馈(显然人们希望他们的手能通过这个)
滚动视图意味着包含一个布局,而不是相反的布局。因此,您的布局应该是:
<HorizontalScrollView android:id="@+id/pscroll"
android:scrollbars="horizontal" android:orientation="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_below="@id/ad" android:fillViewport="true"
android:scrollbarAlwaysDrawHorizontalTrack="true">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout android:orientation="horizontal"
android:id="@+id/LinearLayout01" android:scrollbars="horizontal"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<ImageButton android:id="@+id/P1" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageButton android:id="@+id/P2" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>
</HorizontalScrollView>
关于java - RelativeLayout中的HorizontalScrollView:在1.6 + API上可以正常使用,但在1.5 API上不能正常使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7716809/