首页 > 移动平台 > 详细

Android——ViewFilper轮播图

时间:2021-09-05 16:02:55      阅读:37      评论:0      收藏:0      [点我收藏+]

介绍

  ViewFilper是Android中轮播图组件。这是一个ViewGroup和RaidoGroup一样包裹图片来作为内容,通过设置inAnimation和outAnimation达到图片的切换效果。

 

方法

  public void startFlipping()

    参数:无

    返回值;无  

    返回值意义:无

    作用:开启轮播,使用inAnimation和outAnimation绑定的效果轮播图片

 

属性

  inAnimation:进入的动画效果

  outAnimation:离开的动画效果

 

使用

  1. 在ViewFilper中用<inculde layout="" > 绑定图片

  2. 设置inAnimation和outAnimation,进入和离开的动画效果

  3. startFlipping() 开启轮播效果

 

    <ViewFlipper
        android:layout_width="match_parent"
        android:layout_height="130dp"
        android:inAnimation="@anim/in02"
        android:outAnimation="@anim/out02"
        android:id="@+id/vf">

        <include layout="@layout/vflipper_show1"/>
        <include layout="@layout/vflipper_show2"/>
        <include layout="@layout/vflipper_show3"/>
        <include layout="@layout/vflipper_show4"/>
        <include layout="@layout/vflipper_show5"/>
        <include layout="@layout/vflipper_show6"/>
        <include layout="@layout/vflipper_show7"/>

    </ViewFlipper>

// inAnimation
<set
    android:duration="300"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:fromXDelta="100%p"
        android:fromYDelta="0"
        android:toXDelta="0"
        android:toYDelta="0"/>
</set>


// outAnimation 
<set
    android:duration="300"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <translate
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:toXDelta="-100%p"
        android:toYDelta="0"/>
</set>

viewFilper.startFilpping()

 

Android——ViewFilper轮播图

原文:https://www.cnblogs.com/remix777/p/15227671.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!