水平滚动控件在安卓中使用并不常见,因此也比较少人知道它的使用方法,下面将这样的使用方法和大家分享。
这里的例子实现的是多张图片的显示,已经超过了屏幕的宽度,通过滚动的形式查看右面被挡住的图片。
整体思路:在xml文件中添加一个HorizontalScrollView 控件,在这个控件中添加一个LInearLayout布局,在布局中放置多张图片,这样就实现了超出屏幕部分通过滑动来查看的功能。
activity_main.xml文件:
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<ImageView
android:layout_width="100d