真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android使用TouchDelegate增加View的觸摸范圍

本文為大家分享了Android使用TouchDelegate增加View觸摸范圍的方法,供大家參考,具體內(nèi)容如下

成都創(chuàng)新互聯(lián)主要從事網(wǎng)站制作、成都網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)光山,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18982081108

還不知道TouchDelegate這個(gè)東西的可以先看一下API,這里大致說一下它的作用:假設(shè)有兩個(gè)View,分別是v1,v2,我們可以通過v1的setTouchDelegate(bounds, v2)來委派觸摸事件,其中bounds是一個(gè)Rect。v1中,落在這個(gè)范圍的TouchEvent都會(huì)傳給v2。

既然是這樣,那我們可以通過設(shè)置某個(gè)view的parent的touchDelegate來達(dá)到擴(kuò)大這個(gè)view觸摸范圍的目的。關(guān)鍵是什么時(shí)候去執(zhí)行parent.setTouchDelegate()方法呢?要設(shè)置這個(gè)委派,必須得知道當(dāng)前view大小以及它在parent的位置。而這些數(shù)據(jù)都是在onLayout才能確定(注:如果不是自定義View,只是在Activity中設(shè)置,請(qǐng)將這些操作置于onWindowFocusChanged()方法中)。至此,實(shí)現(xiàn)的思路已經(jīng)很清晰了,我們通過自定義一個(gè)Button來檢驗(yàn)一下,下面開始上代碼:

為了方便在xml中使用我們自定義的View,并且可以自定義擴(kuò)大的觸摸范圍,我們?cè)僮远x一個(gè)attrs,res/values/attrs.xml:

<?xml version="1.0" encoding="utf-8"?> 
 
   
     
     
     
     
     
   
 

Button實(shí)現(xiàn):

public class LargeTouchableAreasButton extends Button { 
  private final int TOUCH_ADDITION = 0; 
  private int mTouchAdditionBottom = 0; 
  private int mTouchAdditionLeft = 0; 
  private int mTouchAdditionRight = 0; 
  private int mTouchAdditionTop = 0; 
  private int mPreviousLeft = -1; 
  private int mPreviousRight = -1; 
  private int mPreviousBottom = -1; 
  private int mPreviousTop = -1; 
 
  public LargeTouchableAreasButton(Context context) { 
    super(context); 
  } 
 
  public LargeTouchableAreasButton(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(context, attrs); 
  } 
 
  public LargeTouchableAreasButton(Context context, AttributeSet attrs, 
      int defStyle) { 
    super(context, attrs, defStyle); 
    init(context, attrs); 
  } 
 
  private void init(Context context, AttributeSet attrs) { 
    TypedArray a = context.obtainStyledAttributes(attrs, 
        R.styleable.LargeTouchableAreaView); 
    int addition = (int) a.getDimension( 
        R.styleable.LargeTouchableAreaView_addition, TOUCH_ADDITION); 
    mTouchAdditionBottom = addition; 
    mTouchAdditionLeft = addition; 
    mTouchAdditionRight = addition; 
    mTouchAdditionTop = addition; 
    mTouchAdditionBottom = (int) a.getDimension( 
        R.styleable.LargeTouchableAreaView_additionBottom, 
        mTouchAdditionBottom); 
    mTouchAdditionLeft = (int) a.getDimension( 
        R.styleable.LargeTouchableAreaView_additionLeft, 
        mTouchAdditionLeft); 
    mTouchAdditionRight = (int) a.getDimension( 
        R.styleable.LargeTouchableAreaView_additionRight, 
        mTouchAdditionRight); 
    mTouchAdditionTop = (int) a.getDimension( 
        R.styleable.LargeTouchableAreaView_additionTop, 
        mTouchAdditionTop); 
    a.recycle(); 
  } 
 
  @Override 
  protected void onLayout(boolean changed, int left, int top, int right, 
      int bottom) { 
    super.onLayout(changed, left, top, right, bottom); 
    if (left != mPreviousLeft || top != mPreviousTop 
        || right != mPreviousRight || bottom != mPreviousBottom) { 
      mPreviousLeft = left; 
      mPreviousTop = top; 
      mPreviousRight = right; 
      mPreviousBottom = bottom; 
      final View parent = (View) this.getParent(); 
      parent.setTouchDelegate(new TouchDelegate(new Rect(left 
          - mTouchAdditionLeft, top - mTouchAdditionTop, right 
          + mTouchAdditionRight, bottom + mTouchAdditionBottom), this)); 
    } 
  } 
 
} 

然后在具體要使用到這個(gè)Button的xml中加上以下代碼:

xmlns:lta="http://schemas.android.com/apk/res/com.xxx.xxx" 

其中"lta"這個(gè)名字可以隨便取,最后的是你的app包名。
最后在這個(gè)Button中定義希望增大的尺寸:

 

大功告成。

但這個(gè)自定義的View并不是完美的,還存在以下問題:

1、必須保證parent足夠大,如果自定義的范圍超出parent的大小,則超出的那部分無效。

2、一個(gè)parent只能設(shè)置一個(gè)觸摸委派,設(shè)置多個(gè)時(shí),只有最后設(shè)置的child有效。如果希望一個(gè)view能設(shè)置多個(gè)委派,需要再自定義parent,具體方法可參考:鏈接地址

總而言之,要觸發(fā)委派,必須保證parent接收到了觸摸事件,并且落在了你定義的范圍內(nèi)。

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)頁標(biāo)題:Android使用TouchDelegate增加View的觸摸范圍
本文鏈接:http://weahome.cn/article/ijiejs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部