1

我在水平滚动视图中有五个图像,我想在页面加载完成后从左到右和从右到左自动滚动这些图像。

4

2 回答 2

3

您可以参考此项目链接...希望这可以解决您的问题...

于 2012-09-29T08:11:54.963 回答
0

在 XML 文件中插入一个 Horizo​​ntalScrollView 标签 indise 你的 ScrollView 标签

例如:

<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>
于 2012-09-29T05:37:16.367 回答