Androidstudio实现左右滑动切换图片

Androidstudio实现左右滑动切换图片

本文实例为大家分享了Android studio实现左右滑动切换图片的具体代码,供大家参考,具体内容如下

切换图片首先要使用到图片切换器ImageSwitcher

先了解一下ImageSwitcher

1.ImageSwitcher的重要属性:

android:inAnimation:切入图片时的效果。
android:outAnimation:切出图片时的效果。

以上两个属性在XML中设定,可以通过XML资源文件自定义动画效果,如果只是想使用Android自带的一些简单的效果,调用Android内置的资源即可,也可以在代码中设定,可以直接使用setInAnimation()和setOutAnimation()方法。它们都传递一个Animation的抽象对象,Animation用于描述一个动画效果,一般使用一个AnimationUtils的工具类获得。

常用的动画效果有:

fede_in:淡进

fade_out:淡出

slide_in_left:从左滑进

slide_out_right: 从右滑出

2.java文件中ImageSwitcher的重要重要方法:

setImageURL(URL) setImageResource(int) setImageDrawable(Drawable)

3.视图工厂 setFactory()

ImageSwitcher通过setFactory()方法为它设置一个ViewSwitcher.ViewFactory接口。设置这个ViewFactory接口时需要实现makeView()方法,该方法通常会返回一个ImageView。makeView()为ImageSwitcher生成ImageView。

接下来代码实现左右滑动切换图片

XML

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="match_parent"     android:layout_height="match_parent">     <ImageSwitcher         android:id="@+id/imageswitch"         android:layout_width="wrap_content"         android:layout_height="wrap_content"/> </LinearLayout>

java代码如下:

package com.example.tablelayout; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.view.WindowManager; import android.view.animation.AnimationUtils; import android.widget.ImageSwitcher; import android.widget.ImageView; import android.widget.ViewSwitcher; import androidx.appcompat.app.AppCompatActivity; public class ImageSwitcha_Activity extends AppCompatActivity {     private  int[]  arrayPicture=new int[]{             R.drawable.pa,R.drawable.pb};     private ImageSwitcher imageSwitcher;     private int  index;     private  float touchDownX;     private  float touchUpX;     @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.imageswitch_main);         //设置全屏显示         getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,                 WindowManager.LayoutParams.FLAG_FULLSCREEN);         imageSwitcher=findViewById(R.id.imageswitch);         //设置视图工厂         imageSwitcher.setFactory(new ViewSwitcher.ViewFactory() {             @Override             public View makeView() {                 ImageView  imageView=new ImageView(ImageSwitcha_Activity.this);                 imageView.setImageResource(arrayPicture[index]);//设置显示图片(利用下标)                 return imageView;//返回图像视图             }         });         //设置触摸监听器         imageSwitcher.setOnTouchListener(new View.OnTouchListener() {             @Override             public boolean onTouch(View v, MotionEvent event) {                 //判断动作是不是按下  获得按下时的X坐标                 if(event.getAction()==MotionEvent.ACTION_DOWN) {                     touchDownX=event.getX();                     return true;                 } else if(event.getAction()==MotionEvent.ACTION_UP) {                     touchUpX=event.getX();                     //判断是左滑动还是右滑动                     if(touchUpX-touchDownX>100){                         //判断是不是第一张图片 是就将索引变成最后一张图片索引,                         // 不是则当前索引减一                         index=index==0?arrayPicture.length-1:index-1;                         //使用自带的淡入淡出                         imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(ImageSwitcha_Activity.this,android.R.anim.fade_in));                         imageSwitcher.setOutAnimation(AnimationUtils.loadAnimation(ImageSwitcha_Activity.this,android.R.anim.fade_out));                         imageSwitcher.setImageResource(arrayPicture[index]);                     }else if(touchDownX-touchUpX>100){                         index=index==arrayPicture.length-1?0:index+1;//注意这里下标是从0开始的,所以应该是长度减1                         imageSwitcher.setInAnimation(AnimationUtils.loadAnimation(ImageSwitcha_Activity.this,android.R.anim.fade_in));                         imageSwitcher.setOutAnimation(AnimationUtils.loadAnimation(ImageSwitcha_Activity.this,android.R.anim.fade_out));                         imageSwitcher.setImageResource(arrayPicture[index]);                     }                     return true;                 }                 return false;             }         });     } }

推荐阅读