Android 捲軸

來源:互聯網
上載者:User

標籤:android 捲軸 快速 自訂

小小捲軸,設計還是挺複雜。


其中有兩種類型的捲軸,一條是普通的滑動時的捲軸,一種是快速捲軸


項目中曾經就出現過XML定義了 android:scrollbars="none" 但是滑動時,還是會出現

捲軸,其中是因為設定了快速捲軸的原因 android:fastScrollEnabled="true",而預設android:fastScrollEnabled是false的


關於快速捲軸還有最小頁數設定,見FashScroller源碼,當滾動的頁數在4頁之內時,是不會出現快速捲軸的


// Minimum number of pages to justify showing a fast scroll thumb 
 private static int MIN_PAGES = 4;

 以及:

// Are there enough pages to require fast scroll? Recompute only if total count changes 
 if (mItemCount != totalItemCount && visibleItemCount > 0) { 
              mItemCount = totalItemCount; 
              mLongList = mItemCount / visibleItemCount >= MIN_PAGES; 
 }


還有就是有時可能要自訂捲軸的圖片

XML定義如下:

android:scrollbarThumbVertical

android:scrollbarThumbHorizontal

代碼設定如下:

//修改快速捲軸圖片
        try {
                        Field f = AbsListView.class.getDeclaredField("mFastScroller");
                        f.setAccessible(true);
                        Object o = f.get(this);
                        f = f.getType().getDeclaredField("mThumbDrawable");
                        f.setAccessible(true);
                        Drawable drawable = (Drawable) f.get(o);
                        drawable = getResources().getDrawable(R.drawable.icon);
                        f.set(o, drawable);
                } catch (Exception e) {
                        e.printStackTrace();
                }
//修改豎向捲軸圖片
                
                try {
                        Field f = View.class.getDeclaredField("mScrollCache");
                        f.setAccessible(true);
                        Object scrollabilityCache  = f.get(this);
                        f = f.getType().getDeclaredField("scrollBar");
                        f.setAccessible(true); 
                        Object scrollBarDrawable = f.get(scrollabilityCache);
                        f = f.getType().getDeclaredField("mVerticalThumb");
                        f.setAccessible(true); 
                        Drawable drawable = (Drawable) f.get(scrollBarDrawable); 
                        drawable = getResources().getDrawable(R.drawable.rating_progress);
                        f.set(scrollBarDrawable, drawable);
                } catch (Exception e) {
                        e.printStackTrace();
                }




本文出自 “媽媽100Team Dev” 部落格,請務必保留此出處http://mama100tech.blog.51cto.com/8943983/1708721

Android 捲軸

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.