您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍“Android如何实现滑动屏幕切换图片的方法”,在日常操作中,相信很多人在Android如何实现滑动屏幕切换图片的方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Android如何实现滑动屏幕切换图片的方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
具体内容如下
activity_main.xml 文件代码:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.example.administrator.hand_gliding.MainActivity"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/imageView" android:src="@drawable/a1"/> </LinearLayout>
MainActivity.java 文件代码:
package com.example.administrator.hand_gliding; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.GestureDetector; import android.view.MotionEvent; import android.widget.ImageView; public class MainActivity extends AppCompatActivity { //定义图片 private int[] resId = new int[]{ R.drawable.a1,R.drawable.a2,R.drawable.a3,R.drawable.a4, R.drawable.a5,R.drawable.a6,R.drawable.a7 }; //图片下标序号 private int count = 0; //定义手势监听对象 private GestureDetector gestureDetector; //定义ImageView对象 private ImageView iv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); iv = (ImageView)findViewById(R.id.imageView); //获取ImageView控件id gestureDetector = new GestureDetector(onGestureListener); //设置手势监听由onGestureListener处理 } //当Activity被触摸时回调 public boolean onTouchEvent(MotionEvent event){ return gestureDetector.onTouchEvent(event); } //自定义GestureDetector的手势识别监听器 private GestureDetector.OnGestureListener onGestureListener = new GestureDetector.SimpleOnGestureListener(){ //当识别的手势是滑动手势时回调onFinger方法 public boolean onFling(MotionEvent e1,MotionEvent e2,float velocityX,float velocityY){ //得到手触碰位置的起始点和结束点坐标 x , y ,并进行计算 float x = e2.getX()-e1.getX(); float y = e2.getY()-e1.getY(); //通过计算判断是向左还是向右滑动 if(x > 0){ count++; count%=(resId.length-1); //想显示多少图片,就把定义图片的数组长度-1 }else if(x < 0){ count--; count=(count+(resId.length-1))%(resId.length-1); } iv.setImageResource(resId[count]); //切换imageView的图片 return true; } }; }
界面设置效果:
这个功能的代码里有很多没见过的单词,本人英语学的不好,需要查查意思然后找这些方法的功能。
可以用这个加上切换动画做一个图片查看器。
由于没用模拟器,用的是真机调试,给不了滑动的实物图,抱歉抱歉。
到此,关于“Android如何实现滑动屏幕切换图片的方法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。