溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android使用ViewFlipper實現(xiàn)圖片切換功能

發(fā)布時間:2020-10-07 03:43:54 來源:腳本之家 閱讀:130 作者:DistanceZK 欄目:移動開發(fā)

今天給大家簡單的講一下Android手勢,目前市場上的App中手勢的運(yùn)用比較少。
Android提供了兩種手勢:
①.Android提供了手勢檢測,并為手勢檢測提供了相應(yīng)的監(jiān)聽器
②.Android允許開發(fā)者添加手勢,并提供了相應(yīng)的API識別用戶手勢

在之前的一片博客我講過如何使用ViewPager實現(xiàn)圖片滑動切換
地址:Android使用ViewPager實現(xiàn)圖片滑動預(yù)覽效果

但是ViewPager擁有自帶的手勢識別,意思就是它會自動識別手勢是右滑還是左滑。
今天我講一下如何使用ViewFlipper控件實現(xiàn)圖片滑動切換,代碼很簡單,下面我就將實現(xiàn)代碼寫出來。

activity_mian.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.android21_zhangkai_gesture.MainActivity">

 <ViewFlipper
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:id="@+id/vf_main_image"
  ></ViewFlipper>

</LinearLayout>

ViewPager是自帶了圖片切換的動畫,ViewFlipper是沒有自帶切換的動畫的,所以我們可以先寫好動畫,現(xiàn)在res文件夾下新建一個文件夾anim

然后再在anim文件夾內(nèi)寫動畫文件

left_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
 android:fillAfter="true"
 android:duration="1000"
 >
 <translate
  android:fromXDelta="-100%p"
  android:toXDelta="0"
  ></translate>

 <rotate
  android:fromDegrees="0"
  android:toDegrees="360"
  android:pivotX="50%"
  android:pivotY="50%"
  ></rotate>
</set>

left_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
 android:fillAfter="true"
 android:duration="1000"
 >
 <translate
  android:fromXDelta="0"
  android:toXDelta="-100%p"
  ></translate>

 <rotate
  android:fromDegrees="0"
  android:toDegrees="-360"
  android:pivotX="50%"
  android:pivotY="50%"
  ></rotate>

</set>

right_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
 android:fillAfter="true"
 android:duration="1000"
 >
 <translate
  android:fromXDelta="100%p"
  android:toXDelta="0"
  ></translate>

 <rotate
  android:fromDegrees="0"
  android:toDegrees="-360"
  android:pivotX="50%"
  android:pivotY="50%"
  ></rotate>
</set>

right_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
 android:fillAfter="true"
 android:duration="1000"
 >
 <translate
  android:fromXDelta="0"
  android:toXDelta="100%p"
  ></translate>

 <rotate
  android:fromDegrees="0"
  android:toDegrees="360"
  android:pivotX="50%"
  android:pivotY="50%"
  ></rotate>
</set>

MainActivity.java

package com.example.android21_zhangkai_gesture;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.widget.ImageView;
import android.widget.Toast;
import android.widget.ViewFlipper;

public class MainActivity extends AppCompatActivity {

 private ViewFlipper vf_main_image;
 private int images[]={R.mipmap.ic_launcher,R.mipmap.ic_launcher_round};
 private GestureDetector gd;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  vf_main_image = (ViewFlipper) findViewById(R.id.vf_main_image);
  for (int i = 0; i < images.length; i++) {
   ImageView iv=new ImageView(this);
   iv.setImageResource(images[i]);
   vf_main_image.addView(iv);
  }

  //實例化手勢檢測器類
  gd = new GestureDetector(this, new GestureDetector.OnGestureListener() {
   //按下
   @Override
   public boolean onDown(MotionEvent e) {
    Log.i("test","onDown");
    return false;
   }

   //按下,但是手指還未抬起時調(diào)用此方法
   @Override
   public void onShowPress(MotionEvent e) {
    Log.i("test","onShowPress");
   }
   //輕按,按一下,立刻抬起
   @Override
   public boolean onSingleTapUp(MotionEvent e) {
    Log.i("test","onSingleTapUp");
    return false;
   }
   //滾動
   @Override
   public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
    Log.i("test","onScroll");
    return false;
   }
   //長按
   @Override
   public void onLongPress(MotionEvent e) {
    Log.i("test","onLongPress");

   }
   //拖動

   /**
    *
    * @param e1 手指開始滑動時的位置
    * @param e2 手指開始滑動時的位置
    * @param velocityX
    * @param velocityY
    * @return
    */
   @Override
   public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
    Log.i("test","onFling");
    //向右滑,獲取手指結(jié)束滑動時的X坐標(biāo)-手指開始滑動時的X坐標(biāo),如果大于200,則換圖片
    if (e2.getX()-e1.getX()>200){
     Toast.makeText(MainActivity.this, "右滑,上一張", Toast.LENGTH_SHORT).show();
     vf_main_image.showPrevious();//上一張的方法
     //動畫為當(dāng)前圖片從右出去,新圖從左進(jìn)來
     vf_main_image.setInAnimation(MainActivity.this,R.anim.left_in);//設(shè)置進(jìn)來的動畫
     vf_main_image.setOutAnimation(MainActivity.this,R.anim.right_out);//設(shè)置出去的動畫
    }else if(e1.getX()-e2.getX()>200){
     Toast.makeText(MainActivity.this, "左滑,下一張", Toast.LENGTH_SHORT).show();
     vf_main_image.showNext();
     //動畫為當(dāng)前圖片從左出去,新圖從右進(jìn)來
     vf_main_image.setInAnimation(MainActivity.this,R.anim.right_in);
     vf_main_image.setOutAnimation(MainActivity.this,R.anim.left_out);
    }
    return false;
   }
  });
 }

 //給當(dāng)前Activity設(shè)置觸摸事件監(jiān)聽方法
 @Override
 public boolean onTouchEvent(MotionEvent event) {
  return gd.onTouchEvent(event);
 }
}

上述代碼就可以實現(xiàn)圖片切換啦!

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI