【Android Demo】图片之滑动效果(Gallery)
1.介绍 就是Gallery组件,可滑动图片,产生图片的滑动效果! 2.效果图 3.XML文件 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <Gallery android:layout_width="fill_parent" android:id="@+id/gallery1" android:layout_height="fill_parent" android:spacing="16dp"></Gallery> </RelativeLayout> 4.Java代码 package wei.ye.g1; import android...