안 드 로 이 드 사용자 정의 view 원형 진도 바 만 들 기 효과
1.사용자 정의 View 의 속성
2.View 의 구조 방법 에서 사용자 정의 속성 을 얻 을 수 있 습 니 다.
[3.onMesure 재 작성]
4.다시 쓰기 onDraw
1.사용자 정의 속성:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomTitleView">
<attr name="mSpeed" format="integer" />
<attr name="mFirstColor" format="color" />
<attr name="mSecondColor" format="color" />
<attr name="mCircleWidth" format="dimension"/>
<attr name="textSize" format="dimension"/>
</declare-styleable>
</resources>
2.View 의 구조 방법 에서 사용자 정의 속성 을 얻 을 수 있 습 니 다.
/**
*
*/
private int mProgress;
/**
*
*/
private int mFirstColor;
/**
*
*/
private int mSecondColor;
/**
*
*/
private int mCircleWidth;
/**
*
*/
private int mSpeed;
/**
*
*/
private float textSize;
private boolean isNext = false;
private Paint mPaint;
public CustomTitleView(Context context, AttributeSet attrs) {
super(context, attrs);
TypedArray typearray = context.obtainStyledAttributes(attrs, R.styleable.CustomTitleView);
int count= typearray.getIndexCount();
for(int i=0;i<count;i++){
int attr =typearray.getIndex(i);
switch(attr){
case R.styleable.CustomTitleView_mFirstColor:
mFirstColor=typearray.getColor(attr,Color.BLACK);
break;
case R.styleable.CustomTitleView_mSecondColor:
mSecondColor=typearray.getColor(attr,Color.RED);
break;
case R.styleable.CustomTitleView_mCircleWidth:
mCircleWidth = typearray.getDimensionPixelSize(attr,(int)TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_PX,20,getResources().getDisplayMetrics()));
break;
case R.styleable.CustomTitleView_textSize:
textSize = typearray.getDimensionPixelSize(attr,(int)TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_PX,30,getResources().getDisplayMetrics()));
break;
case R.styleable.CustomTitleView_mSpeed:
mSpeed = typearray.getInt(attr,100);// 100
break;
}
}
Log.v("----",mSpeed+"");
typearray.recycle();
mPaint = new Paint();
new Thread()
{
public void run()
{
while (true)
{
mProgress++;
if (mProgress == 360)
{
mProgress = 0;
if (!isNext)
isNext = true;
else
isNext = false;
}
postInvalidate();
try
{
Thread.sleep(mSpeed);
} catch (InterruptedException e)
{
e.printStackTrace();
}
}
};
}.start();
}
3.onDraw 를 직접 다시 씁 니 다.onMeasure 를 다시 쓸 필요 가 없습니다.
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
protected void onDraw(Canvas canvas)
{
/**
*
*/
mPaint.setStrokeWidth(0);
mPaint.setColor(Color.BLACK);
mPaint.setTextSize(textSize);
mPaint.setTypeface(Typeface.DEFAULT_BOLD); //
int percent = (int)(((float)mProgress / (float)360) * 100);
int centre = getWidth() / 2; // x
int radius = centre - mCircleWidth / 2;//
float textWidth = mPaint.measureText(percent + "%"); // ,
canvas.drawText(percent + "%",centre-textWidth/ 2,centre+textSize/2, mPaint); //
mPaint.setStrokeWidth(mCircleWidth); //
mPaint.setAntiAlias(true); //
mPaint.setStyle(Paint.Style.STROKE); //
RectF oval = new RectF(centre - radius, centre - radius, centre + radius, centre + radius); //
if(isNext){
mPaint.setColor(mSecondColor); //
canvas.drawCircle(centre, centre, radius, mPaint); //
mPaint.setColor(mFirstColor); //
canvas.drawArc(oval, -90, mProgress, false, mPaint); //
}else{
mPaint.setColor(mFirstColor); //
canvas.drawCircle(centre, centre, radius, mPaint); //
mPaint.setColor(mSecondColor); //
canvas.drawArc(oval, -90, mProgress, false, mPaint); //
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="20dp"
>
<view.CustomTitleView
android:layout_width="200dp"
android:layout_height="400dp"
custom:mSpeed="50"
custom:mFirstColor="#7300e6"
custom:mSecondColor="#39ac39"
custom:mCircleWidth="10px"
custom:textSize="20px"
android:id="@+id/one"
/>
<view.CustomTitleView
android:layout_toEndOf="@id/one"
android:layout_width="200dp"
android:layout_height="400dp"
custom:mSpeed="100"
custom:mFirstColor="#0040ff"
custom:mSecondColor="#40ff00"
custom:mCircleWidth="20px"
custom:textSize="30px"
/>
</RelativeLayout>
효과 미리 보기원본 다운로드:http://xiazai.jb51.net/201701/yuanma/AndroidProgressbar(jb51.net).rar
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.