中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

Android如何使用SlidingPaneLayout實(shí)現(xiàn)仿微信的滑動返回

這篇文章主要介紹了Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

為東昌府等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及東昌府網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站制作、網(wǎng)站設(shè)計、東昌府網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

雖然上面鏈接里面已近寫好啦.但是還是寫一下代碼:

先看看最終效果:

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

實(shí)現(xiàn)如下:

主要是在baesActivity里面

public class BaesActivity extends AppCompatActivity implements SlidingPaneLayout.PanelSlideListener{
 @Override
 protected void onCreate(@Nullable Bundle savedInstanceState) {
 initSlideBackClose();//滑動返回的設(shè)置
 super.onCreate(savedInstanceState);
 }
 private void initSlideBackClose() {
 if (isSupportSwipeBack()) {
  SlidingPaneLayout slidingPaneLayout = new SlidingPaneLayout(this);
  // 通過反射改變mOverhangSize的值為0,
  // 這個mOverhangSize值為菜單到右邊屏幕的最短距離,
  // 默認(rèn)是32dp,現(xiàn)在給它改成0
  try {
  Field overhangSize = SlidingPaneLayout.class.getDeclaredField("mOverhangSize");
  overhangSize.setAccessible(true);
  overhangSize.set(slidingPaneLayout, 0);
  } catch (Exception e) {
  e.printStackTrace();
  }
  slidingPaneLayout.setPanelSlideListener(this);
  slidingPaneLayout.setSliderFadeColor(getResources()
   .getColor(android.R.color.transparent));
  // 左側(cè)的透明視圖
  View leftView = new View(this);
  leftView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
  slidingPaneLayout.addView(leftView, 0);
  ViewGroup decorView = (ViewGroup) getWindow().getDecorView();
  // 右側(cè)的內(nèi)容視圖
  ViewGroup decorChild = (ViewGroup) decorView.getChildAt(0);
  decorChild.setBackgroundColor(getResources()
   .getColor(android.R.color.white));
  decorView.removeView(decorChild);
  decorView.addView(slidingPaneLayout);
  // 為 SlidingPaneLayout 添加內(nèi)容視圖
  slidingPaneLayout.addView(decorChild, 1);
 }
 }
 //設(shè)置是否使用滑動返回
 protected boolean isSupportSwipeBack() {
 return true;
 }
 @Override
 public void onPanelSlide(View panel, float slideOffset) {
 }
 @Override
 public void onPanelOpened(View panel) {
 finish();
 }
 @Override
 public void onPanelClosed(View panel) {
 }
}

然后讓Acitivity繼承baesActivity就可以了

public class MainActivity extends BaesActivity

看看效果

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

怎么會這樣!

然后就去看看那需要改動,發(fā)現(xiàn)在BaesActivity里面寫了一個方法:

 //設(shè)置是否使用滑動返回
 protected boolean isSupportSwipeBack() {
 return true;
 }

在不需要返回的界面重寫此方法并返回 false,就行了向這樣

 @Override
 protected boolean isSupportSwipeBack() {
 return false;
 }

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

主界面不滑動的問題解決了,但是還有一個問題在滑動的時候左邊顯示的是一個白板,這怎么破?

這就要設(shè)置  activity 的 style了 在AndroidManifest.xml 文件里面找到 application 就是黃色那行,跳進(jìn)去

 <application
 android:name=".MyApplication"
 android:allowBackup="true"
 android:icon="@mipmap/ic_launcher"
 android:label="@string/app_name"
 android:roundIcon="@mipmap/ic_launcher_round"
 android:supportsRtl="true"
 android:theme="@style/AppTheme">//設(shè)置樣式
 <activity android:name=".MainActivity">
  <intent-filter>
  <action android:name="android.intent.action.MAIN" />

  <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
 </activity>
 <activity android:name=".TwoActivity"/>
 <activity android:name=".ThreeActivity"/>
 </application>

設(shè)置styles.xml ,添加黃色部分的內(nèi)容

 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
 <!-- Customize your theme here. -->
 <item name="colorPrimary">@color/colorPrimary</item>
 <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
 <item name="colorAccent">@color/colorAccent</item>
 <!--設(shè)置窗口背景為透明-->
 <item name ="android:windowIsTranslucent">true</item>
 <item name="android:windowBackground">@android:color/transparent</item>
 </style>

運(yùn)行起來:

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

偶買噶! 我的首頁怎么變成這樣了,透明了?怎么辦,

小事,因為我們設(shè)置了上面那兩行的原因,現(xiàn)在只要把界面的根布局里面添加一個背景色就行了

<android.support.constraint.ConstraintLayout
 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"
 android:orientation="vertical"
 android:background="#f2f2f2"
 tools:context="com.mvp.tl.myslidingpanelayoutdemo.MainActivity">
 <Button
 android:id="@+id/next"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="第一個,下一界面"
 app:layout_constraintBottom_toBottomOf="parent"
 app:layout_constraintLeft_toLeftOf="parent"
 app:layout_constraintRight_toRightOf="parent"
 app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

OK,初步實(shí)現(xiàn)就這樣了,但是這效果也太丑了吧!

嗯,現(xiàn)在來改改Activity的開啟關(guān)閉的樣式

還是在styles.xml 進(jìn)行修改<resources>

 <!-- Base application theme. -->
 <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
 <!-- Customize your theme here. -->
 <item name="colorPrimary">@color/colorPrimary</item>
 <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
 <item name="colorAccent">@color/colorAccent</item>
 <!--設(shè)置窗口背景為透明-->
 <item name ="android:windowIsTranslucent">true</item>
 <item name="android:windowBackground">@android:color/transparent</item>
 <!--activity啟動關(guān)閉樣式-->
 <item name="android:windowAnimationStyle">@style/activityAnimation</item>
 </style>
 <!--activity啟動關(guān)閉動畫-->
<style name="activityAnimation" parent="@android:style/Animation"> 
<item name="android:activityOpenEnterAnimation">@anim/in_from_right</item> 
<item name="android:activityCloseExitAnimation">@anim/out_to_left</item> 
</style>

anim/in_from_right.xml和anim/out_to_left在

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

進(jìn)行設(shè)置:

in_from_right.xml

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

out_to_left.xml

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

然后看看效果

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

OK,效果出來了.但是當(dāng)它遇到ViewPager的時候呢?

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

怎么這樣,ViewPager的右滑無法使用了,SlidingPaneLayout的右滑搶了ViewPager的滑動事件.怎么辦

自定義SlidingPaneLayout

import android.content.Context;
import android.support.v4.view.MotionEventCompat;
import android.support.v4.widget.SlidingPaneLayout;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.ViewConfiguration;
/*
在使用側(cè)滑菜單的時候如果主界面中有ViewPager的時候調(diào)用該自定義控件,避免二者的沖突事件的發(fā)生
 */
public class PageEnabledSlidingPaneLayout extends SlidingPaneLayout {
 private float mInitialMotionX;
 private float mInitialMotionY;
 private float mEdgeSlop;//手滑動的距離
 public PageEnabledSlidingPaneLayout(Context context) {
 this(context, null);
 }
 public PageEnabledSlidingPaneLayout(Context context, AttributeSet attrs) {
 this(context, attrs, 0);
 }
 public PageEnabledSlidingPaneLayout(Context context, AttributeSet attrs, int defStyle) {
 super(context, attrs, defStyle);
 ViewConfiguration config = ViewConfiguration.get(context);
 mEdgeSlop = config.getScaledEdgeSlop();//getScaledTouchSlop是一個距離
 }
 @Override
 public boolean onInterceptTouchEvent(MotionEvent ev) {
 switch (MotionEventCompat.getActionMasked(ev)) {
  case MotionEvent.ACTION_DOWN: {
  mInitialMotionX = ev.getX();
  mInitialMotionY = ev.getY();
  break;
  }
  case MotionEvent.ACTION_MOVE: {
  final float x = ev.getX();
  final float y = ev.getY();
  // The user should always be able to "close" the pane, so we only check
  // for child scrollability if the pane is currently closed.
  if (mInitialMotionX > mEdgeSlop && !isOpen() && canScroll(this, false,
   Math.round(x - mInitialMotionX), Math.round(x), Math.round(y))) {
   // How do we set super.mIsUnableToDrag = true?
   // send the parent a cancel event
   MotionEvent cancelEvent = MotionEvent.obtain(ev);
   cancelEvent.setAction(MotionEvent.ACTION_CANCEL);
   return super.onInterceptTouchEvent(cancelEvent);
  }
  }
 }
 return super.onInterceptTouchEvent(ev);
 }
}

并用其替換BaesActivity 里面的SlidingPaneLayout 就可以了

Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回

OK,最終效果就這樣完成了.

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設(shè)備,如智能手機(jī)和平板電腦,由美國Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android如何使用SlidingPaneLayout 實(shí)現(xiàn)仿微信的滑動返回”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

新聞標(biāo)題:Android如何使用SlidingPaneLayout實(shí)現(xiàn)仿微信的滑動返回
瀏覽地址:http://www.rwnh.cn/article2/jiecic.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、自適應(yīng)網(wǎng)站云服務(wù)器、網(wǎng)站建設(shè)關(guān)鍵詞優(yōu)化、做網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
壤塘县| 万安县| 贵州省| 确山县| 华坪县| 墨竹工卡县| 平原县| 东乡族自治县| 建昌县| 广安市| 华宁县| 太湖县| 临朐县| 乾安县| 东辽县| 南城县| 阜阳市| 乐至县| 平阳县| 黔西县| 山阴县| 永嘉县| 阜宁县| 罗江县| 阿克陶县| 筠连县| 白银市| 正阳县| 卓资县| 江川县| 临朐县| 河北省| 裕民县| 敖汉旗| 城固县| 桂平市| 临洮县| 志丹县| 城固县| 土默特右旗| 新巴尔虎右旗|