不要无限滑动图片
怎么样才可以让图片滑动到最后一张停止,我不要无限滑动
怎么样才可以让图片滑动到最后一张停止,我不要无限滑动
2016-11-19
布局文件可以这样:
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
tools:ignore="UselessParent">
<LinearLayout
android:id="@+id/layout_gallery"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
</LinearLayout>
</HorizontalScrollView>
Java 代码可以这样:
int[] images = {
// 这里是图片资源 ID 集合
};
LinearLayout gallery = (LinearLayout) findViewById(R.id.layout_gallery);
for (int i = 0; i < images.length; i++) {
gallery.addView(getImage(i));
}
// 注意使用 HorizontalScrollView 就暂时可以不需要用适配器了
举报