溫馨提示×

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

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

Android開發(fā)之使用150行代碼實(shí)現(xiàn)滑動(dòng)返回效果

發(fā)布時(shí)間:2020-08-27 02:13:20 來(lái)源:腳本之家 閱讀:127 作者:程序亦非猿 欄目:移動(dòng)開發(fā)

今天帶大家實(shí)現(xiàn)滑動(dòng)返回效果.,具體內(nèi)容如下所示:

先看看效果圖:

Android開發(fā)之使用150行代碼實(shí)現(xiàn)滑動(dòng)返回效果

因?yàn)闆](méi)有具體內(nèi)容,也沒(méi)有簡(jiǎn)書的圖片資源,所以稍微簡(jiǎn)陋了點(diǎn).
但是依然不妨礙我們的效果展示~
OK,接下來(lái)慣例,通過(guò)閱讀本文你能學(xué)習(xí)到:

ViewDragHelper的使用(如果你想學(xué)習(xí)自定義View,那么ViewDragHelper你絕對(duì)不能錯(cuò)過(guò))

好像也沒(méi)有什么了....

這個(gè)效果,難度不大,會(huì)ViewDragHelper的同學(xué)應(yīng)該10分鐘就能寫出來(lái)了吧~

如果不會(huì)也沒(méi)關(guān)系~

1. 我們自定義一個(gè)SwipeBackFrameLayout繼承自FrameLayout

1.1 因?yàn)榭吹阶筮咟S色的View是被遮住的,而另外一個(gè)View的寬度是MatchParent的,所以FrameLayout是不錯(cuò)的選擇.
順便增加一個(gè)回調(diào),通知activity去finish

public void setCallback(Callback mCallback){
 this.mCallback = mCallback;
}
private Callback mCallback;
public interface Callback{
 void onShouldFinish();
}

1.2 Xml布局,非常簡(jiǎn)單:

<yifeiyuan.practice.practicedemos.drager.SwipeBackFrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:id="@+id/swipe_back"
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context="yifeiyuan.practice.practicedemos.drager.SwipeBackActivity">
 <TextView
  android:layout_width="40dp"  
  android:layout_height="match_parent"  
  android:text="@string/hello_world"
  android:gravity="center"
  android:background="#ffff00"
  />
 <View
  android:layout_width="match_parent"  
  android:layout_height="match_parent"
  android:background="#ff00ff"
  />
</yifeiyuan.practice.practicedemos.drager.SwipeBackFrameLayout>

1.3 實(shí)例化一個(gè)ViewDragHelper

//1f代表靈敏度 
mDragHelper = ViewDragHelper.create(this, 1f,new ViewDragHelper.Callback() {
 @Override
 public boolean tryCaptureView(View child, int pointerId) {
  return false;
 }
}
//因?yàn)槲覀兪菑淖笙蛴一瑒?dòng) 所以設(shè)置EDGE_LEFT
mDragHelper.setEdgeTrackingEnabled(ViewDragHelper.EDGE_LEFT);

1.4 在SwipeBackFrameLayout里實(shí)例化xml里的子View

private View mDividerView;
private View mContentView;
@Override
protected void onFinishInflate() {
 super.onFinishInflate(); 
 mDividerView = getChildAt(0);
 mDividerView.setAlpha(0f);
 mContentView = getChildAt(1);
}

1.5 讓ViewDragHelper處理touch事件

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
 return mDragHelper.shouldInterceptTouchEvent(ev);
}

@Override
public boolean onTouchEvent(MotionEvent event) { 
 mDragHelper.processTouchEvent(event);
 return true;
}

1.6重寫ViewDragHelper的一些處理方法

已附上詳細(xì)注釋

@Override
public void onEdgeTouched(int edgeFlags, int pointerId) { 
 super.onEdgeTouched(edgeFlags, pointerId); 
 //觸摸到左邊界的時(shí)候 我們capture住mContentView   
 mDragHelper.captureChildView(mContentView, pointerId); 
}   
@Override   
public int getViewHorizontalDragRange(View child) {
  return 1;  
}
   
@Override 
public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {
  super.onViewPositionChanged(changedView, left, top, dx, dy);
  Log.d(TAG, "onViewPositionChanged() called with left = [" + left + "], top = [" + top + "], dx = [" + dx + "], dy = [" + dy + "]"); 
  //0.0 - 1.0
  //Notice 這邊可以給個(gè)接口回調(diào)出去,就可以做各種炫酷的效果了      
  float alpha = (float) (left*1.0/mDividerWidth); 
  mDividerView.setAlpha(alpha);   
} 
  @Override
  public int clampViewPositionHorizontal(View child, int left, int dx) {
//    Log.d(TAG, "clampViewPositionHorizontal() called with dx = [" + dx + "]");
  // 計(jì)算left 我們的目標(biāo)范圍是0-dividerwidth的寬度
  mLastdx = dx; 
  int newLeft = Math.min(mDividerWidth, Math.max(left,0));       
  return newLeft; 
}   
  @Override   
  public void onViewReleased(View releasedChild, float xvel, float yvel) {    
  //>0代表用戶想關(guān)閉    
  if (mLastdx>0){
  // 還不到關(guān)閉條件,我們讓view滑動(dòng)過(guò)去,再關(guān)閉     
  if (mDividerWidth != releasedChild.getLeft()) { 
  mDragHelper.settleCapturedViewAt(mDividerWidth,releasedChild.getTop();
  invalidate(); 
} else { 
  if (mCallback != null) { 
   mCallback.onShouldFinish(); 
  }  
} 
}else{   
  //用戶不想關(guān)閉 ,則滑動(dòng)到最左邊
  if (mDividerWidth != 0) { 
   mDragHelper.settleCapturedViewAt(0, releasedChild.getTop()); 
   invalidate(); 
  }
}   
}   
  @Override   
  public void onViewDragStateChanged(int state) { 
    super.onViewDragStateChanged(state); 
//滑動(dòng)停止,并且到達(dá)了滑動(dòng)的判斷條件 則回調(diào)關(guān)閉
if(mDragHelper.getViewDragState()==ViewDragHelper.STATE_IDLE&&mCallback != null&&mDividerWidth==mContentView.getLeft()&&mLastdx>0) {     
mCallback.onShouldFinish(); 
    }
   }
  });

1.7 增加對(duì)view滑動(dòng)事件處理,對(duì)于以上mDividerWidth我們?cè)趏nLayout里獲取

private int mDividerWidth;
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
 super.onLayout(changed, left, top, right, bottom);
 mDividerWidth = mDividerView.getWidth();
}
//Notice view 剛初始化的時(shí)候就會(huì)被調(diào)用一次
 @Override
 public void computeScroll() {
  super.computeScroll();
  //  Log.d(TAG, "computeScroll() called with " + ""); 
 if (mDragHelper.continueSettling(true)) {
  invalidate();
  }
}

我們寫完自定義view后還需要自定義一下activity的退出動(dòng)畫~

2.定義activity的finish動(dòng)畫

2.1 在anim目錄下,創(chuàng)建兩個(gè)動(dòng)畫xml:

//no_anim
<alpha
android:duration="300" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:fromAlpha="1.0"
android:toAlpha="1.0"
></alpha>

//out_to_right
<translate 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:duration="300" 
android:fromXDelta="0%" 
android:toXDelta="100%" 
></translate>

2.2 在activity里設(shè)置callback監(jiān)聽,并運(yùn)用動(dòng)畫

mSwipeBack.setCallback(new SwipeBackFrameLayout.Callback() { 
 @Override
 public void onShouldFinish() {
  finish();
  overridePendingTransition(R.anim.no_anim, R.anim.out_to_right);
 }
});

好了!!代碼量非常少!就是這么簡(jiǎn)單~

吐槽一下,簡(jiǎn)書對(duì)代碼塊的支持太差了,代碼復(fù)制過(guò)來(lái)全是亂的!!
同學(xué)們還是去看源碼吧:

源碼在我的Github上

總結(jié)

以上所述是小編給大家介紹的教你150行代碼實(shí)現(xiàn)滑動(dòng)返回效果的代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

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

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

AI