如何進(jìn)行Gridview的實(shí)現(xiàn),針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:空間域名、網(wǎng)絡(luò)空間、營銷軟件、網(wǎng)站建設(shè)、雙臺子網(wǎng)站維護(hù)、網(wǎng)站推廣。我們知道Gridview不能設(shè)置onClickListener和onLongClickListener,當(dāng)GridView中出現(xiàn)了Blank cell,有時(shí)需要響應(yīng)click事件,沒有API可以調(diào)用。
AbsListView中的pointToPositon方法可以返回某個(gè)點(diǎn)對應(yīng)的adapter中的數(shù)據(jù)position,當(dāng)返回-1時(shí),說明該點(diǎn)不在可見點(diǎn)item上,為空白區(qū)域。利用這個(gè)方法在dispatchTouchEvent中設(shè)置回調(diào),可以解決這個(gè)問題。
以下是我實(shí)現(xiàn)的可以增加了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; } } } } }
關(guān)于如何進(jìn)行Gridview的實(shí)現(xiàn)問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
文章標(biāo)題:如何進(jìn)行Gridview的實(shí)現(xiàn)-創(chuàng)新互聯(lián)
瀏覽路徑:http://vcdvsql.cn/article18/csipdp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、微信小程序、做網(wǎng)站、網(wǎng)站內(nèi)鏈、手機(jī)網(wǎng)站建設(shè)、靜態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容