1
我是新來的android,可以請指導我如何繪製以下形狀在android?我會感謝任何幫助。謝謝。 安卓繪製自定義形狀
我是新來的android,可以請指導我如何繪製以下形狀在android?我會感謝任何幫助。謝謝。 安卓繪製自定義形狀
public class CustomView extends View{
public onDraw(Canvas canvas){
// Take paint object
Paint fillBackgroundPaint = new Paint();
fillBackgroundPaint.setColor(ContextCompat.getColor(context, R.color.black));
// Draw lines and Rectangles by using the below methods on canvas
canvas.drawLine()
canvas.drawRect()
}
}