中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何進行Gridview的實現

發布時間:2022-01-07 22:17:15 來源:億速云 閱讀:154 作者:柒染 欄目:移動開發

如何進行Gridview的實現,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

        我們知道Gridview不能設置onClickListener和onLongClickListener,當GridView中出現了Blank cell,有時需要響應click事件,沒有API可以調用。

        AbsListView中的pointToPositon方法可以返回某個點對應的adapter中的數據position,當返回-1時,說明該點不在可見點item上,為空白區域。利用這個方法在dispatchTouchEvent中設置回調,可以解決這個問題。

以下是我實現的可以增加了onClickListener 和onLongClickListener的Gridview,有需要的可以參考一下:

import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.ViewConfiguration;
import android.widget.GridView;

public class ClickableGridView extends GridView {

    public ClickableGridView(Context context){
        super(context);
    }
    public ClickableGridView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
    public ClickableGridView(Context context, AttributeSet attrs,  int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    private OnNoItemClickListener clickListener;
    private OnNoItemLongClickListener longClickListener;
    private boolean mHasPerformedLongPress = false;
    private boolean isPressed;
    private CheckForLongPress checkForLongPress;

    public interface OnNoItemClickListener {
        public void onNoItemClick();
    }

    public interface OnNoItemLongClickListener{
        public void onNoItemLongClick();
    }

    public void setOnNoItemClickListener(OnNoItemClickListener listener) {
        this.clickListener = listener;
    }

    public void setOnNoItemLongClickListener(OnNoItemLongClickListener longClickListener) {
        this.longClickListener = longClickListener;
    }

    @Override
    public boolean dispatchTouchEvent(MotionEvent event) {
        // The pointToPosition() method returns -1 if the touch event
        // occurs outside of a child View.
        if (pointToPosition((int) event.getX(), (int) event.getY()) == -1) {
            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                    isPressed = true;
                    mHasPerformedLongPress = false;
                    if(checkForLongPress == null){
                        checkForLongPress = new CheckForLongPress();
                    }
                    postDelayed(checkForLongPress, ViewConfiguration.getLongPressTimeout());
                    break;
                case MotionEvent.ACTION_UP:
                    if(!mHasPerformedLongPress){
                        removeCallbacks(checkForLongPress);
                        if(clickListener != null){
                            clickListener.onNoItemClick();
                        }
                    }else{
                        mHasPerformedLongPress = false;
                    }
                    isPressed = false;
                    break;
                case MotionEvent.ACTION_CANCEL:
                case MotionEvent.ACTION_MOVE:
                default:
                    removeCallbacks(checkForLongPress);
                    isPressed = false;
                    break;
            }
        }
        return super.dispatchTouchEvent(event);
    }
    private final class CheckForLongPress implements Runnable {

        @Override
        public void run() {
            if (isPressed){
                if (longClickListener != null) {
                    longClickListener.onNoItemLongClick();
                    mHasPerformedLongPress = true;
                }
            }
        }
    }
}

關于如何進行Gridview的實現問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

梁山县| 区。| 淮滨县| 桓台县| 贺州市| 梁河县| 江油市| 淅川县| 临邑县| 四会市| 永嘉县| 潼南县| 呼玛县| 祥云县| 莆田市| 德令哈市| 儋州市| 任丘市| 渭南市| 庆安县| 怀集县| 丰都县| 岐山县| 泊头市| 扶余县| 武功县| 迁西县| 西藏| 合作市| 广灵县| 饶阳县| 斗六市| 阿城市| 兰西县| 彩票| 武山县| 巴塘县| 南澳县| 锦州市| 扎鲁特旗| 区。|