我在水平滚动视图中有五个图像,我想在页面加载完成后自动从左到右滚动这些图像。
答案 0 :(得分:3)
您可以参考此项目link...希望这可以解决您的问题......
答案 1 :(得分:0)
插入一个HorizontalScrollView标记,将您的ScrollView标记设置为XML文件
对于Ex:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:scrollbars="vertical">
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="320px" android:layout_height="fill_parent">
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linlay" android:layout_width="320px"
android:layout_height="fill_parent" android:stretchColumns="1"
android:background="#000000"/>
</HorizontalScrollView>
</ScrollView>