在Android中,要設置ArcView
的顏色,您需要使用Paint
類并設置其顏色屬性。以下是一個簡單的示例,展示了如何在自定義的ArcView
類中設置顏色:
res/values/colors.xml
文件中定義您想要的顏色值:<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="arc_color">#FF0000</color>
</resources>
ArcView
的構造函數中創建一個Paint
對象,并使用setColor()
方法設置顏色:import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
public class ArcView extends View {
private Paint mPaint;
private RectF mArcRect;
public ArcView(Context context) {
this(context, null);
}
public ArcView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public ArcView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeWidth(10);
mArcRect = new RectF();
}
public void setArcColor(int color) {
mPaint.setColor(color);
invalidate();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// 設置圓弧的顏色
mPaint.setColor(getResources().getColor(R.color.arc_color));
// 繪制圓弧
canvas.drawArc(mArcRect, 0, 270, false, mPaint);
}
}
ArcView
,并通過代碼設置顏色:<your.package.name.ArcView
android:id="@+id/arc_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
ArcView arcView = findViewById(R.id.arc_view);
arcView.setArcColor(getResources().getColor(R.color.arc_color));
這樣,您就可以在ArcView
中設置顏色了。