Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android手動拖動滾動條快速滑動

android手動拖動滾動條快速滑動

編輯:Android開發實例

今天想實現android通訊錄中,那種手動可以拖拽著滾動條滑動的效果,如下圖:

 

 

 

查看了android的源代碼,發現只需在ListView中加入一個參數

android:fastScrollEnabled="true"  android:focusable="true"

android的源代碼如下:

在contacts_list_content.xml中:

<com.android.contacts.FocusRequestingListView android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:fastScrollEnabled="true"
    />

而FocusRequestingListView 的源代碼如下:

public class FocusRequestingListView extends ListView {

    private boolean mFirstLayoutDone = false;

    public FocusRequestingListView(Context context) {
        super(context);
    }

    public FocusRequestingListView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public FocusRequestingListView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        if (!mFirstLayoutDone) {
            setFocusable(true);
            requestFocus();
        }
        mFirstLayoutDone = true;
    }
}

其實有用的就這麼兩句話,

   if (!mFirstLayoutDone) {
            setFocusable(true);
            requestFocus();
        }
        mFirstLayoutDone = true;
說的意思就是在什麼情況下設置focusable焦點。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved