我的app的测试版使用了HorizontalScrollView。
当我在2.33模拟器上运行它时,“风格”在每一端都发光 滚动,滚动条出现,然后消失,工作正常,但是 当我在1.6模拟器上加载相同的.APK时,“样式”大多停止 工作。滚动条始终打开,当您没有发光时 滚动到任意一端,但功能正常。
我知道你不能完全指望模拟器工作正常, 但我希望它能在1.6上工作。
文档说在Level Level 3中添加了HorizontalScrollView, 这是在1.6之前,所以在理论上它应该工作正常。
没有为应用定义样式,我注意到了HorizontalScrollView 有一定的“风格”列出。
以防万一,这是我的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/list_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<HorizontalScrollView
android:id="@+id/hscrollview"
android:background="#ee1a1a1a"
android:layout_alignParentBottom="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/hsvgallery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" />
</HorizontalScrollView>
</RelativeLayout>
谢谢!
更新:
我将测试应用程序加载到带有1.6的G1上,同样的事情发生了 滚动条保持打开状态,滚动两端都没有“发光”, 但它确实“有效”,我只需处理它,我想......