先看效果圖:
android 現(xiàn)在已經(jīng)自帶RateingBar,當(dāng)然原生會更好些梦碗,這里算是拋磚引玉吧。希望對學(xué)習(xí)自定義控件的小伙伴有點幫助刃滓。
一 自定義屬性
這里需要三個屬性
...
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="RatingBar">
<attr name="iconNormal" format="reference"/>
<attr name="iconSelect" format="reference"/>
<attr name="iconNumber" format="integer"/>
</declare-styleable>
</resources>
...
默認(rèn)星星圖片和選中后的星星圖片以及星星數(shù)量
二 新建RatingBar類
1,get 屬性
...
TypedArray typedValue=context.obtainStyledAttributes(attrs, R.styleable.RatingBar);
//首先拿到圖片屬性的resourceId
int iconSelectId= typedValue.getResourceId(R.styleable.RatingBar_iconSelect,0);
if(iconSelectId==0) throw new RuntimeException("屬性設(shè)置=0");//如果沒有設(shè)置圖片拋出一個運(yùn)行時異常
int iconNormalid=typedValue.getResourceId(R.styleable.RatingBar_iconNormal,0);
if(iconNormalid==0)throw new RuntimeException("屬性設(shè)置=0");
//通過resource 解析達(dá)到圖片的bitmap
bitmapSelect=BitmapFactory.decodeResource(context.getResources(),iconSelectId);
bitmapNormal=BitmapFactory.decodeResource(getResources(),iconNormalid);
//得到星星數(shù)量屬性
starNumber=typedValue.getInteger(R.styleable.RatingBar_iconNumber,starNumber);
typedValue.recycle();
...
上面有個問題困擾我,一直沒搞懂,如果有了解的可以指點下谈火。問題如下:
我先是把兩個星星圖片放到了mipmap里面,然后通過上面的代碼拿到bitmap舌涨,但是這時的bitmap.getWidth()返回值是0糯耍,這樣就沒法畫出星星。我嘗試了好多方法囊嘉,最后還是把兩個圖片放到drawable文件夾下才可以温技。why?
2.onMeasure
...
int widthSize=bitmapSelect.getWidth()starNumber+getPaddingRight()(starNumber-1);
int heightSize=bitmapSelect.getHeight();
setMeasuredDimension(widthSize,heightSize);
...
如果不加padding,星星就會連到一起扭粱,所以加上paddingRight舵鳞,高度就是bitmap圖片的高度。
3.onDraw
...
for (int i = 0; i <starNumber ; i++) {
//坐標(biāo)x=圖片的寬度+paddingRight琢蛤,有幾個圖片就乘上幾
float x=bitmapNormal.getWidth() * i+getPaddingRight()*i;
if(mCurrentX>i)//mCurrent 代表當(dāng)前黃色星星在哪個位置上
canvas.drawBitmap(bitmapSelect, x, 0, null);
else
canvas.drawBitmap(bitmapNormal, x, 0, null);
}
..
4 onTouch
...
case DOWN
case MOVE
float x=getx()/(bitmap.width()+getPaddingRight());//finger down 在第幾個星星的x位置
if(x==mCurrentx)return true;
mCurrentx=x;
invalidate();
三 使用
...
<com.ui.main.RatingBar
android:id="@+id/ratingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="15dp"
app:iconNormal="@drawable/starnormal"
app:iconNumber="5"
app:iconSelect="@drawable/starselected" />
...
...
四 源碼
...
public class RatingBar extends View {
final String TAG="RatingBarTAG";
/**
* 需要解析的圖片
*/
private Bitmap bitmapNormal,bitmapSelect;
/**
* star 數(shù)量
*/
private int starNumber=5;
/**
* 當(dāng)前手指所在的位置是第幾個星星的位置
*/
private float mCurrentX=0f;
public RatingBar(Context context) {
this(context,null);
}
public RatingBar(Context context, @Nullable AttributeSet attrs) {
this(context, attrs,0);
}
public RatingBar(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
TypedArray typedValue=context.obtainStyledAttributes(attrs, R.styleable.RatingBar);
int iconSelectId= typedValue.getResourceId(R.styleable.RatingBar_iconSelect,0);
if(iconSelectId==0) throw new RuntimeException("屬性設(shè)置=0");
int iconNormalid=typedValue.getResourceId(R.styleable.RatingBar_iconNormal,0);
if(iconNormalid==0)throw new RuntimeException("屬性設(shè)置=0");
bitmapSelect=BitmapFactory.decodeResource(context.getResources(),iconSelectId);
bitmapNormal=BitmapFactory.decodeResource(getResources(),iconNormalid);
starNumber=typedValue.getInteger(R.styleable.RatingBar_iconNumber,starNumber);
typedValue.recycle();
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int widthSize=bitmapSelect.getWidth()*starNumber+getPaddingRight()*(starNumber-1);
int heightSize=bitmapSelect.getHeight();
setMeasuredDimension(widthSize,heightSize);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
for (int i = 0; i <starNumber ; i++) {
//坐標(biāo)x=圖片的寬度+paddingRight蜓堕,有幾個圖片就乘上幾
float x=bitmapNormal.getWidth() * i+getPaddingRight()*i;
if(mCurrentX>i)
canvas.drawBitmap(bitmapSelect, x, 0, null);
else
canvas.drawBitmap(bitmapNormal, x, 0, null);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_MOVE:
float x= event.getX()/(bitmapSelect.getWidth()+getPaddingRight());
if(x==mCurrentX){
return true;
}
mCurrentX=x;
invalidate();
break;
}
return true;
}
}
...