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

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

怎么在Android中通過自定義View實現(xiàn)一個五星好評效果

這期內(nèi)容當中小編將會給大家?guī)碛嘘P怎么在Android中通過自定義View實現(xiàn)一個五星好評效果,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)新互聯(lián)建站主營阜新網(wǎng)站建設的網(wǎng)絡公司,主營網(wǎng)站建設方案,App定制開發(fā),阜新h5小程序制作搭建,阜新網(wǎng)站營銷推廣歡迎阜新等地區(qū)企業(yè)咨詢

首先自定義屬性:



  
    
    
    
  

下面看看具體實現(xiàn):

/**
 * Created by Michael on 2019/11/1.
 */
 
public class RatingStar extends View {
 
  private int normalId;
  private int focusId;
  private Bitmap normalImg;
  private Bitmap focusImg;
  private int number;
  private int w1;
  private int h2;
  private int marginLeft;
  private int marginTop;
  private int marginBottom;
  private int marginRight;
  private int height;
  private int width;
  private int p;
  private float w0;
  private int i0;
  private int mGrade;
 
  public RatingStar(Context context) {
    this(context,null);
  }
 
  public RatingStar(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs,0);
  }
 
  public RatingStar(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    TypedArray array = context.obtainStyledAttributes(attrs,R.styleable.RatingStar);
    normalId = array.getResourceId(R.styleable.RatingStar_starNormal,0);
    focusId = array.getResourceId(R.styleable.RatingStar_starFocus,0);
    normalImg = BitmapFactory.decodeResource(getResources(), normalId);
    focusImg = BitmapFactory.decodeResource(getResources(), focusId);
    number = array.getInteger(R.styleable.RatingStar_starNumber,5);
    array.recycle();
    i0 = -1;
 
  }
 
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    w1 = normalImg.getWidth();
    h2 = normalImg.getHeight();
    //中間間隔
    p = 30;
    marginTop = 20;
    marginBottom = 20;
    marginLeft = 20;
    marginRight = 20;
    height = h2 + marginTop + marginBottom;
    width = w1 *number+(number-1)*p +marginLeft+marginRight;
    setMeasuredDimension(width, height);
  }
 
  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    for (int i = 0; i < number; i++) {
      if (i <= i0){
        canvas.drawBitmap(focusImg,i*w1+marginLeft+i*p,marginTop,null);
        mGrade = i+1;
      }else{
        canvas.drawBitmap(normalImg,i*w1+marginLeft+i*p,marginTop,null);
      }
    }
    Log.e("msg","我被調(diào)用了!");
 
  }
 
  @Override
  public boolean onTouchEvent(MotionEvent event) {
    float x = event.getX();//相對于控件自身的距離
    //event.getRawX() 相對于屏幕的距離
    switch (event.getAction()){
      case MotionEvent.ACTION_DOWN:
      case MotionEvent.ACTION_MOVE:
      //case MotionEvent.ACTION_UP:
        w0 = getWidth()/5;
        i0 = (int) (x/w0);
        //性能優(yōu)化,減少onDraw()調(diào)用
        if (mGrade == i0+1){
          return true;
        }
        invalidate();
        break;
    }
    return true;
  }
}

最后看看具體布局中使用:

 

上述就是小編為大家分享的怎么在Android中通過自定義View實現(xiàn)一個五星好評效果了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章名稱:怎么在Android中通過自定義View實現(xiàn)一個五星好評效果
文章URL:http://weahome.cn/article/pipdci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部