Android实现图片轮播切换

本文介绍了如何在Android中使用ViewFlipper和AnimationUtils实现带动画的图片轮播切换。当点击上一张或下一张按钮时,图片会进行相应的动画过渡。布局文件包括四个XML动画资源,同时在ImageFlipperShadeActivity.java中设置了WindowManager属性和触摸事件监听。虽然源码暂未上传,作者承诺完成后会分享。
摘要由CSDN通过智能技术生成

利用Android的ViewFlipper和AnimationUtils实现图片带有动画的轮播切换,其中当点击“上一张”图片时,切换到上一张图片;当点击“下一张”图片时,切换到下一张图片。其效果图如下:



1、设置布局文件activity_image_flipper_shade.xml,其内容如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:paddingBottom="@dimen/activity_optopns_vertical_margin"
    android:paddingLeft="@dimen/activity_options_horizontal_margin"
    android:paddingRight="@dimen/activity_options_horizontal_margin"
    android:paddingTop="@dimen/activity_optopns_vertical_margin"
    tools:context=".ImageFlipperActivity" >

    <RelativeLayout
        android:id="@id/rl_image_flipper_shade_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/btn_image_flipper_shade_back"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_marginBottom="10dp"
            android:background="@drawable/custom_button"
            android:text="@string/back"
            android:textColor="@color/textColor"
            android:textSize="16sp"
            android:visibility="visible" />

        <TextView
            android:id="@id/tv_image_flipper_shade_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/image_flipper_shade"
            android:textColor="@color/textColor"
            android:textSize="30sp"
            android:textStyle="bold" />
    </RelativeLayout>

    <LinearLayout
        android:id="@id/ll_image_flipper_shade_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/rl_image_flipper_shade_title"
        android:layout_marginBottom="20d
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值