Android开发学习
图片左右滑动效果,第七种:加载网络图片的切换,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第七种:加载网络图片的切换,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第六种:自动播放、加了4个点,同步切换,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第五种:图片左右滑动,加了4个点,同步切换,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第四种:自动切换图片,点击最后这张图片调整到下一个Activity,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第三种:自动切换图片,结束后跳到下一个Activity,使用控件ViewFlipper
Android开发学习
图片左右滑动效果,第二种:自动切换图片,使用控件ViewFlipper
新建xml布局文件:activity_main.xml,代码内容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ViewFlipper
android:id="@+id/ViewFlipper1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY" >
</ViewFlipper>
Android开发学习
图片左右滑动效果,第一种:手动切换图片,使用控件ViewFlipper
新建xml布局文件:activity_main.xml,代码内容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ViewFlipper
android:id="@+id/ViewFlipper1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY" >
</ViewFlipper>