91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在Android應用中利用 scrollToTop實現一個點擊回到頂部功能

發布時間:2020-11-26 16:49:17 來源:億速云 閱讀:417 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關怎么在Android應用中利用 scrollToTop實現一個點擊回到頂部功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

實現方法

布局代碼:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 tools:context="com.znke.pulltorefresh_top.MainActivity"> 
 
 <!--<com.znke.pulltorefresh_top.tool.ToTopScrollView .../>--> 
 <ScrollView 
  android:id="@+id/scrollView" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:layout_below="@+id/tv_top" 
  android:scrollbars="none"> 
 
  <LinearLayout 
   android:layout_width="match_parent" 
   android:layout_height="wrap_content" 
   android:orientation="vertical"> 
 
   <TextView 
    android:layout_width="match_parent" 
    android:layout_height="50dp" 
    android:gravity="center" 
    android:text="111111111111" 
    android:textSize="20sp" /> 
 
   ........... 
 
   <View 
    android:layout_width="match_parent" 
    android:layout_height="2dp" 
    android:background="#AAAAAA" /> 
 
   <TextView 
    android:layout_width="match_parent" 
    android:layout_height="80dp" 
    android:gravity="center" 
    android:text="12000000000000" 
    android:textSize="20sp" /> 
  </LinearLayout> 
 </ScrollView> 
 
 <com.znke.pulltorefresh_top.tool.ToTopImageView 
  android:id="@+id/imageView_to_top" 
  android:layout_width="50dp" 
  android:layout_height="50dp" 
  android:layout_alignParentBottom="true" 
  android:layout_alignParentRight="true" 
  android:layout_marginBottom="5dp" 
  android:layout_marginRight="5dp" 
  android:background="@drawable/to_top" /> 
</RelativeLayout>

然后在activity中設置下面事件不就完了嘛!!!

mScrollView.setOnScrollChangeListener();

很遺憾,報錯。alt+enter搞定錯誤不就完了嘛!很遺憾,運行繼續報錯,報空指針,神奇吧,找不出來。翻閱資料后發現,scrollview的onScrollChanged方法是受保護的。故按照網上的資料,自定義ScrollView類,暴露出onScrollChanged方法:

public class ToTopScrollView extends ScrollView { 
 private OnMyScrollListener onMyScrollListener; 
 
 public void setOnMyScrollListener(OnMyScrollListener onMyScrollListener) { 
  this.onMyScrollListener = onMyScrollListener; 
 } 
 
 ... 
 
 @Override 
 protected void onScrollChanged(int l, int t, int oldl, int oldt) { 
  super.onScrollChanged(l, t, oldl, oldt); 
  if(onMyScrollListener != null) 
   onMyScrollListener.onScrollChanged(l,t,oldl,oldt); 
 } 
 
 public interface OnMyScrollListener{ 
  void onScrollChanged(int x, int y, int oldx, int oldy); 
 } 
}

然后在activity中設置setOnMyScrollListener()方法,就可以監控scrollview的狀態了。剩下的就是自定義imageview的邏輯了。

可是,自定義ToTopImageView里面怎么弄呢?它需要有一個高度臨界值,與activity傳遞scrollview的scrollY值比較,來判定ToTopImageView是否顯示。代碼簡單,搞定。

只是這樣有個小問題,onScrollChanged方法是監控滾動狀態的,沒有說停止。如果在里面判斷超過臨界值就顯示與隱藏imageview,那么會一直設置imageview。這樣肯定不是最佳的方法。如果能在滾動停止時再判定是否需要顯示與隱藏imageview就好了。此時我還沒有想太多,動手簡單實現了剛才的分析。

實現后,感覺挺爽。然而在準備加到項目中時發現,我們項目用了PullToRefresh刷新代碼庫,也簡單,把自定義的Scrollview替換就可以了。運行,糟糕,沒有效果,然后調試,事件沒有處罰,可能是PullToRefresh庫把事件屏蔽了,咋辦?找onTouchListener監聽方法唄。

于是改用了測試:

mScrollView.setOnTouchListener()

我去,沒有調傭,把pullToRefreshScrollView里面各種監聽方法都試遍了,沒用。他只提供了頂部和底部的上拉、下拉刷新監聽,毛用。

于是查看其源碼,發現把事件攔截了。而且pullToRefreshScrollView根本就不是scrollview,看源碼:

  @Override 
protected ScrollView createRefreshableView(Context context, AttributeSet attrs) { 
 ScrollView scrollView; 
 if (VERSION.SDK_INT >= VERSION_CODES.GINGERBREAD) { 
  scrollView = new InternalScrollViewSDK9(context, attrs); 
 } else { 
  scrollView = new ScrollView(context, attrs); 
 } 
 
 scrollView.setId(R.id.scrollview); 
 return scrollView; 
}

他里面提供了一個方法可以或得到Scrollview:

final ScrollView scrollView = mScrollView.getRefreshableView();

回想起了以前項目也這么用過,只是當時不明白這句話干啥的,白寫。

然后就用上面這種方法得到scrollview,再設置onscrollchanged方法監聽滑動。運行報錯,同樣無效。于是只能換onTouchListener監聽了。

但是這樣問題來了,我們只能監聽到手勢,即何時按下、移動和彈起。當快速滑動手指彈起后,scrollview還在滾動的,什么時候去拿到它的scrollY值呢?犯愁了。

此時不得不用最開始分析的方法,在自定義imageview里面定義線程,掃描當前scrollY和上一次保存的對比,不一樣即說明仍在滾動,一樣即表明scrollview滾動停止了。

什么時候開啟線程呢?在onTouch回調中down、move或者up時調用。

試想下:

如果在down中調用時,用戶只在scrollview上點擊或短距離滑動,imageview里面要不停地開啟線程?浪費資源。

如果在up中調用時,當用戶按著屏幕一口氣滑過臨界值,還不松手呢?還不顯示imageview嗎?也行,個人覺得不太好。
于是,我選擇在move中調用imageview地線程。有人會想,這樣會不會啟動N多個線程呢?move一直在移動呢。“在iamgeview判斷下線程的狀態即可,如果已經啟動了,就不啟動唄”。或許這么寫不太好,但我認為是實時的,用戶體驗好。

看代碼:

/** 
  * 獲取待監控的view對象 
  * 實時調起線程,監控是否scroll停止,來判斷是否需要顯示imageView 
  * @param targetView 需要監控的對象 
  */ 
 public void tellMe(View targetView) { 
  if (targetView == null) 
   throw new IllegalArgumentException("please set targetView who to scrollTo"); 
  if (this.targetView == null) 
   this.targetView = targetView; 
  if (!isStarting) { 
   new Thread(scanThread).start(); 
  } 
 }

此處注意,我偷懶了,沒有單獨設置方法傳遞需要滾動的scrollview,在此處引進來了。線程加了判斷。此處不要傳遞scrollview的scrollY值進來。比喻當你手指離開屏幕后,之前傳遞進來的scrollY就已經過時了,scrollview仍在滑動。在消息回調里面實時獲取再判斷

private class MyCallback implements Runnable { 
  @Override 
  public void run() { 
   /** 
    * 獲取實時的卷動值,不要傳遞scroll值給我 
    */ 
   endScrollX = targetView.getScrollX(); 
   int scrollY = targetView.getScrollY(); 
   if (endScrollY != scrollY) { 
    endScrollY = scrollY; 
   } else { 
    if (endScrollY >= limitHeight) { 
     if (!thisStateVisible) 
      visible(); 
    } else { 
     if (thisStateVisible) 
      gone(); 
    } 
    /** 
     * 已判定,卷動停止,顯示或隱藏當前view已完成 
     * 退出監控scroll線程 
     */ 
    clearCallBacks(); 
   } 
  } 
 }

由于是用線程來檢測scrollview的滾動狀態,我用了延時消息。此時又有另外一個潛在bug。在自定義imageview中創建了handler屬于主線程,子線程中需要發延時消息。如果延時消息發出后,activity退出了呢?反復這么弄呢?有人會說沒誰會這么無聊的。但這畢竟還是潛在的OOM。于是我簡單的做了線程控制和消息清除的代碼,過于簡單。感謝評論。

主要思路和邏輯都分析完了,使用起來很簡答,你不用關心自定義imageview里面的邏輯(除非你想改進)。

在activity中

private PullToRefreshScrollView mScrollView; 
 private ToTopImageView imageView_to_top; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.activity_pull_to_refresh_scroll_view); 
 
  imageView_to_top = (ToTopImageView) findViewById(R.id.imageView_to_top); 
  imageView_to_top.setLimitHeight(800); 
  mScrollView = (PullToRefreshScrollView) findViewById(R.id.scrollView); 
  final ScrollView scrollView = mScrollView.getRefreshableView(); 
  //mScrollView.setOnTouchListener(); 無效 
  scrollView.setOnTouchListener(new View.OnTouchListener() { 
   @Override 
   public boolean onTouch(View v, MotionEvent event) { 
    switch (event.getAction()){ 
     case MotionEvent.ACTION_MOVE: 
      imageView_to_top.tellMe(scrollView); 
      break; 
    } 
    return false; 
   } 
  }); 
 } 
 
 @Override 
 protected void onDestroy() { 
  imageView_to_top.clearCallBacks(); 
  super.onDestroy(); 
 }

頁面上,在你覺得合適的位置:

<com.znke.pulltorefresh_top.tool.ToTopImageView 
  android:id="@+id/imageView_to_top" 
  android:layout_width="50dp" 
  android:layout_height="50dp" 
  android:layout_alignParentBottom="true" 
  android:layout_alignParentRight="true" 
  android:layout_marginBottom="5dp" 
  android:layout_marginRight="5dp" 
  android:background="@drawable/to_top" />

以上就是怎么在Android應用中利用 scrollToTop實現一個點擊回到頂部功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

伊吾县| 开江县| 自贡市| 抚宁县| 麻城市| 贡嘎县| 综艺| 通化市| 莱西市| 西宁市| 镇康县| 微博| 伊宁县| 汉寿县| 安丘市| 洛阳市| 甘孜| 金沙县| 瑞金市| 石嘴山市| 柘城县| 沁水县| 双流县| 新乐市| 安徽省| 遂平县| 昂仁县| 台东县| 牙克石市| 平武县| 井研县| 固安县| 马龙县| 麟游县| 囊谦县| 龙胜| 勐海县| 宁南县| 郯城县| 浦江县| 元江|