水平スクロール ビューに 5 つの画像があり、ページの読み込みが完了したときに、これらの画像を左から右、右から左に自動的にスクロールしたいと考えています。
user1696753
質問する
5258 次
2 に答える
3
このプロジェクトのリンクを参照できます...これで問題が解決することを願っています...
于 2012-09-29T08:11:54.963 に答える
0
XML ファイルに HorizontalScrollView タグを挿入し、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 に答える