1
Я новичок в android, не могли бы вы рассказать, как я могу нарисовать следующую форму в android? Буду признателен за любую помощь. Благодарю. Android Draw Custom Shape
Я новичок в android, не могли бы вы рассказать, как я могу нарисовать следующую форму в android? Буду признателен за любую помощь. Благодарю. Android Draw Custom Shape
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()
}
}