欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android自定義字母導(dǎo)航欄

 更新時(shí)間:2019年12月10日 11:41:17   作者:Android師哥  
這篇文章主要為大家詳細(xì)介紹了Android自定義字母導(dǎo)航欄,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android字母導(dǎo)航欄的具體代碼,供大家參考,具體內(nèi)容如下

效果

實(shí)現(xiàn)邏輯

明確需求

字母導(dǎo)航欄在實(shí)際開(kāi)發(fā)中還是比較多見(jiàn)的,城市選擇、名稱選擇等等可能需要到。 現(xiàn)在要做到的就是在滑動(dòng)控件過(guò)程中可以有內(nèi)容以及 下標(biāo)的回調(diào),方便處理其他邏輯!

整理思路

1、確定控件的尺寸,防止內(nèi)容顯示不全。相關(guān)的邏輯在onMeasure()方法中處理;
2、繪制顯示的內(nèi)容,在按下和抬起不同狀態(tài)下文字、背景的顏色。相關(guān)邏輯在onDraw()方法中;
3、滑動(dòng)事件的處理以及事件回調(diào)。相關(guān)邏輯在onTouchEvent()方法中;

動(dòng)手實(shí)現(xiàn)

在需求明確、思路清晰的情況下就要開(kāi)始動(dòng)手實(shí)現(xiàn)(需要了解自定義View的一些基礎(chǔ)API)。核心代碼就onDraw()中。在代碼中有思路和注釋,可以結(jié)合代碼一起看看。如果有疑惑、優(yōu)化、錯(cuò)誤的地方請(qǐng)?jiān)谠u(píng)論區(qū)提出,共同進(jìn)步!

完整代碼

/**
 * 自定義字母導(dǎo)航欄
 * 
 * 總的來(lái)說(shuō)就四步
 * 1、測(cè)量控件尺寸{@link #onMeasure(int, int)}
 * 2、繪制顯示內(nèi)容(背景以及字符){@link #onDraw(Canvas)}
 * 3、處理滑動(dòng)事件{@link #onTouchEvent(MotionEvent)}
 * 4、暴露接口{@link #setOnNavigationScrollerListener(OnNavigationScrollerListener)}
 *
 * @attr customTextColorDefault //導(dǎo)航欄默認(rèn)文字顏色
 * @attr customTextColorDown //導(dǎo)航欄按下文字顏色
 * @attr customBackgroundColorDown //導(dǎo)航欄按下背景顏色
 * @attr customLetterDivHeight //導(dǎo)航欄內(nèi)容高度間隔
 * @attr customTextSize //導(dǎo)航欄文字尺寸
 * @attr customBackgroundAngle //導(dǎo)航欄背景角度
 */
public class CustomLetterNavigationView extends View {
  private static final String TAG = "CustomLetterNavigation";
  //導(dǎo)航內(nèi)容
  private String[] mNavigationContent;
  //導(dǎo)航欄內(nèi)容間隔
  private float mContentDiv;
  //導(dǎo)航欄文字大小
  private float mContentTextSize;
  //導(dǎo)航欄文字顏色
  private int mContentTextColor;
  //導(dǎo)航欄按下時(shí)背景顏色
  private int mBackgroundColor;
  //導(dǎo)航欄按下時(shí)圓角度數(shù)
  private int mBackGroundAngle = 0;
  //導(dǎo)航欄按下時(shí)文字顏色
  private int mDownContentTextColor;
  private TextPaint mTextPaint;
  private Paint mPaintBackgrount;
  private boolean mEventActionState = false;
  private String mCurrentLetter = "";
  private OnNavigationScrollerListener mOnNavigationScrollerListener;
  private final RectF mRectF = new RectF();
  public CustomLetterNavigationView(Context context) {
    this(context, null);
  }

  public CustomLetterNavigationView(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs, 0);
  }

  public CustomLetterNavigationView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    initDefaultData();//初始化默認(rèn)數(shù)據(jù)
    initAttrs(context, attrs);
  }

  @Override
  protected void onDraw(Canvas canvas) {
    /**
     * <P>
     *   這里我們分為兩步
     *
     *   1、繪制背景
     *    這里簡(jiǎn)單,直接調(diào)用Canvas的drawRoundRect()方法直接繪制
     *   2、繪制顯示文本
     *    繪制文字首先要定位,定位每個(gè)字符的坐標(biāo)
     *    X軸簡(jiǎn)單,寬度的一半
     *    Y軸坐標(biāo)通過(guò)每個(gè)字符的高h(yuǎn)eightShould乘以已繪制字符的數(shù)目
     * </P>
     */
    int mViewWidth = getWidth();
    //繪制背景
    mRectF.set(0, 0, mViewWidth, getHeight());
    if (mEventActionState) {
      mTextPaint.setColor(mDownContentTextColor);
      mPaintBackgrount.setColor(mBackgroundColor);
      canvas.drawRoundRect(mRectF, mBackGroundAngle, mBackGroundAngle, mPaintBackgrount);
    } else {
      mTextPaint.setColor(mContentTextColor);
      mPaintBackgrount.setColor(Color.TRANSPARENT);
      Drawable mBackground = getBackground();
      if (mBackground instanceof ColorDrawable) {
        mPaintBackgrount.setColor(((ColorDrawable) mBackground).getColor());
      }
      canvas.drawRoundRect(mRectF, mBackGroundAngle, mBackGroundAngle, mPaintBackgrount);
    }
    //繪制文本
    float textX = mViewWidth / 2;
    //X軸坐標(biāo)
    int contentLenght = getContentLength();
    //Y軸坐標(biāo)(這里在測(cè)量的時(shí)候多加入了兩個(gè)間隔高度要減去,同時(shí)還有Padding值)
    float heightShould = (getHeight() - mContentDiv * 2 - getPaddingTop() - getPaddingBottom()) / contentLenght;
    for (int i = 0; i < contentLenght; i++) {
      //計(jì)算Y軸的坐標(biāo)
      float startY = ((i + 1) * heightShould) + getPaddingTop();
      //繪制文字
      canvas.drawText(mNavigationContent[i], textX, startY, mTextPaint);
    }
  }

  @Override
  public boolean onTouchEvent(MotionEvent event) {
    /**
     * 這里主要處理手指滑動(dòng)事件
     */
    float mEventY = event.getY();
    switch (event.getAction()) {
      case MotionEvent.ACTION_DOWN:
        //手指按下的時(shí)候,修改Enent狀態(tài)、重繪背景、觸發(fā)回調(diào)
        mEventActionState = true;
        invalidate();
        if (mOnNavigationScrollerListener != null) {
          mOnNavigationScrollerListener.onDown();
        }
        scrollCount(mEventY);
        break;
      case MotionEvent.ACTION_MOVE:
        scrollCount(mEventY);
        break;
      case MotionEvent.ACTION_CANCEL:
      case MotionEvent.ACTION_UP:
        //手指離開(kāi)的時(shí)候,修改Enent狀態(tài)、重繪背景、觸發(fā)回調(diào)
        mEventActionState = false;
        invalidate();
        if (mOnNavigationScrollerListener != null) {
          mOnNavigationScrollerListener.onUp();
        }
        break;
    }
    return true;
  }


  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    /**
     * <p>
     *   這里做了簡(jiǎn)單的適應(yīng),其目的就是為了能夠正常的顯示我們的內(nèi)容
     *
     *   不管設(shè)置的是真實(shí)尺寸或者是包裹內(nèi)容,都會(huì)以內(nèi)容的最小尺寸為
     *   基礎(chǔ),如果設(shè)置的控件尺寸大于我們內(nèi)容的最小尺寸,就使用控件
     *   尺寸,反之使用內(nèi)容的最小尺寸!
     * </p>
     */
    int widhtMode = MeasureSpec.getMode(widthMeasureSpec);
    int heightMode = MeasureSpec.getMode(heightMeasureSpec);
    //獲取控件的尺寸
    int actualWidth = MeasureSpec.getSize(widthMeasureSpec);
    int actualHeight = MeasureSpec.getSize(heightMeasureSpec);
    int contentLegth = getContentLength();
    //計(jì)算一個(gè)文字的尺寸
    Rect mRect = measureTextSize();
    //內(nèi)容的最小寬度
    float contentWidth = mRect.width() + mContentDiv * 2;
    //內(nèi)容的最小高度
    float contentHeight = mRect.height() * contentLegth + mContentDiv * (contentLegth + 3);
    if (MeasureSpec.AT_MOST == widhtMode) {
      //寬度包裹內(nèi)容
      actualWidth = (int) contentWidth + getPaddingLeft() + getPaddingRight();
    } else if (MeasureSpec.EXACTLY == widhtMode) {
      //寬度限制
      if (actualWidth < contentWidth) {
        actualWidth = (int) contentWidth + getPaddingLeft() + getPaddingRight();
      }
    }
    if (MeasureSpec.AT_MOST == heightMode) {
      //高度包裹內(nèi)容
      actualHeight = (int) contentHeight + getPaddingTop() + getPaddingBottom();
    } else if (MeasureSpec.EXACTLY == widhtMode) {
      //高度限制
      if (actualHeight < contentHeight) {
        actualHeight = (int) contentHeight + getPaddingTop() + getPaddingBottom();
      }
    }
    setMeasuredDimension(actualWidth, actualHeight);
  }


  /**
   * 初始化默認(rèn)數(shù)據(jù)
   */
  private void initDefaultData() {
    mNavigationContent = new String[]{"搜", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};
    mContentDiv = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 5, getResources().getDisplayMetrics());
    mContentTextSize = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, 14, getResources().getDisplayMetrics());
    mContentTextColor = Color.parseColor("#333333");
    mDownContentTextColor = Color.WHITE;
    mBackgroundColor = Color.parseColor("#d7d7d7");
    mBackGroundAngle = 0;
    //繪制文字畫筆
    mTextPaint = new TextPaint();
    mTextPaint.setAntiAlias(true);
    mTextPaint.setTextSize(mContentTextSize);
    mTextPaint.setColor(mContentTextColor);
    mTextPaint.setTextAlign(Paint.Align.CENTER);
    //繪制背景畫筆
    mPaintBackgrount = new Paint();
    mPaintBackgrount.setAntiAlias(true);
    mPaintBackgrount.setStyle(Paint.Style.FILL);
  }

  /**
   * 初始化自定義屬性
   *
   * @param context
   * @param attrs
   */
  private void initAttrs(Context context, AttributeSet attrs) {
    TypedArray mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.CustomLetterNavigationView);
    mContentTextColor = mTypedArray.getColor(R.styleable.CustomLetterNavigationView_customTextColorDefault, mContentTextColor);
    mBackgroundColor = mTypedArray.getColor(R.styleable.CustomLetterNavigationView_customBackgroundColorDown, mBackgroundColor);
    mDownContentTextColor = mTypedArray.getColor(R.styleable.CustomLetterNavigationView_customTextColorDown, mDownContentTextColor);
    mContentTextSize = mTypedArray.getDimension(R.styleable.CustomLetterNavigationView_customTextSize, mContentTextSize);
    mContentDiv = mTypedArray.getFloat(R.styleable.CustomLetterNavigationView_customLetterDivHeight, mContentDiv);
    mBackGroundAngle = mTypedArray.getInt(R.styleable.CustomLetterNavigationView_customBackgroundAngle, mBackGroundAngle);
    mTypedArray.recycle();
  }


  /**
   * 獲取內(nèi)容長(zhǎng)度
   *
   * @return 內(nèi)容長(zhǎng)度
   */
  private int getContentLength() {
    if (mNavigationContent != null) {
      return mNavigationContent.length;
    }
    return 0;
  }

  /**
   * 滑動(dòng)計(jì)算
   *
   * @param mEventY Y軸滑動(dòng)距離
   */
  private void scrollCount(float mEventY) {
    //滑動(dòng)的時(shí)候利用滑動(dòng)距離和每一個(gè)字符高度進(jìn)行取整,獲取到Index
    Rect mRect = measureTextSize();
    int index = (int) ((mEventY - getPaddingTop() - getPaddingBottom() - mContentDiv * 2) / (mRect.height() + mContentDiv));
    //防止越界
    if (index >= 0 && index < getContentLength()) {
      String newLetter = mNavigationContent[index];
      //防止重復(fù)觸發(fā)回調(diào)
      if (!mCurrentLetter.equals(newLetter)) {
        mCurrentLetter = newLetter;
        if (mOnNavigationScrollerListener != null) {
          mOnNavigationScrollerListener.onScroll(mCurrentLetter, index);
        }
      }
    }
  }

  /**
   * 測(cè)量文字的尺寸
   *
   * @return 一個(gè)漢字的矩陣
   */
  public Rect measureTextSize() {
    Rect mRect = new Rect();
    if (mTextPaint != null) {
      mTextPaint.getTextBounds("田", 0, 1, mRect);
    }
    return mRect;
  }


  /**
   * 設(shè)置導(dǎo)航欄滑動(dòng)監(jiān)聽(tīng)
   *
   * @param onNavigationScrollerListener
   */
  public void setOnNavigationScrollerListener(OnNavigationScrollerListener onNavigationScrollerListener) {
    this.mOnNavigationScrollerListener = onNavigationScrollerListener;
  }

  /**
   * 設(shè)置導(dǎo)航欄顯示內(nèi)容
   *
   * @param content 需要顯示的內(nèi)容
   */
  public void setNavigationContent(String content) {
    if (!TextUtils.isEmpty(content)) {
      mNavigationContent = null;
      mNavigationContent = new String[content.length()];
      for (int i = 0; i < content.length(); i++) {
        mNavigationContent[i] = String.valueOf(content.charAt(i));
      }
    }
    //需要重新測(cè)量
    requestLayout();
  }

  public interface OnNavigationScrollerListener {
    //按下
    void onDown();

    //滑動(dòng)
    void onScroll(String letter, int position);

    //離開(kāi)
    void onUp();

  }
}

自定義屬性

<declare-styleable name="CustomLetterNavigationView">
    <attr name="customTextColorDefault" format="color" />
    <attr name="customTextColorDown" format="color" />
    <attr name="customBackgroundColorDown" format="color" />
    <attr name="customLetterDivHeight" format="dimension" />
    <attr name="customTextSize" format="dimension" />
    <attr name="customBackgroundAngle" format="integer" />
</declare-styleable>

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android從源碼的角度徹底理解事件分發(fā)機(jī)制的解析(下)

    Android從源碼的角度徹底理解事件分發(fā)機(jī)制的解析(下)

    這篇文章主要介紹了Android從源碼的角度徹底理解事件分發(fā)機(jī)制的解析(下),具有很好的參考價(jià)值,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-05-05
  • Android ADB簡(jiǎn)介、安裝及使用詳解

    Android ADB簡(jiǎn)介、安裝及使用詳解

    ADB 全稱為 Android Debug Bridge,起到調(diào)試橋的作用,是一個(gè)客戶端-服務(wù)器端程序,其中客戶端是用來(lái)操作的電腦,服務(wù)端是 Android 設(shè)備,這篇文章介紹Android ADB簡(jiǎn)介、安裝及使用,感興趣的朋友跟隨小編一起看看吧
    2024-01-01
  • Android裁剪圖片為圓形圖片的實(shí)現(xiàn)原理與代碼

    Android裁剪圖片為圓形圖片的實(shí)現(xiàn)原理與代碼

    這個(gè)方法是根據(jù)傳入的圖片的高度(height)和寬度(width)決定的,如果是 width <= height時(shí),則會(huì)裁剪高度,裁剪的區(qū)域是寬度不變高度從頂部到寬度width的長(zhǎng)度
    2013-01-01
  • Android UI控件之ImageSwitcher實(shí)現(xiàn)圖片切換效果

    Android UI控件之ImageSwitcher實(shí)現(xiàn)圖片切換效果

    這篇文章主要為大家詳細(xì)介紹了Android UI控件之ImageSwitcher實(shí)現(xiàn)圖片切換效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • Android自定義Toast之WindowManager

    Android自定義Toast之WindowManager

    這篇文章主要為大家詳細(xì)介紹了Android自定義Toast之WindowManager的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-08-08
  • android實(shí)現(xiàn)RecyclerView列表單選功能

    android實(shí)現(xiàn)RecyclerView列表單選功能

    這篇文章主要為大家詳細(xì)介紹了android實(shí)現(xiàn)RecyclerView列表單選功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-07-07
  • Android實(shí)現(xiàn)仿微軟系統(tǒng)加載動(dòng)畫效果

    Android實(shí)現(xiàn)仿微軟系統(tǒng)加載動(dòng)畫效果

    這篇文章主要介紹了Android實(shí)現(xiàn)仿微軟系統(tǒng)加載動(dòng)畫效果的方法,幫助大家更好的理解和學(xué)習(xí)使用Android,感興趣的朋友可以了解下
    2021-04-04
  • Android對(duì)圖片Drawable實(shí)現(xiàn)變色示例代碼

    Android對(duì)圖片Drawable實(shí)現(xiàn)變色示例代碼

    這篇文章主要給大家介紹了關(guān)于Android對(duì)圖片Drawable實(shí)現(xiàn)變色的相關(guān)資料,文中通過(guò)示例代碼將實(shí)現(xiàn)的方法介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起看看吧。
    2017-08-08
  • Android手機(jī)App安全漏洞整理(小結(jié))

    Android手機(jī)App安全漏洞整理(小結(jié))

    這篇文章主要介紹了Android手機(jī)App安全漏洞整理(小結(jié)),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-09-09
  • Android獲取apk程序簽名信息代碼示例

    Android獲取apk程序簽名信息代碼示例

    這篇文章主要介紹了Android獲取apk程序簽名信息的方法,大家參考使用吧
    2013-11-11

最新評(píng)論