Issue
I am new to android, can you please guide how I can draw following shape in android? I will appreciate any help. Thanks.
Solution
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()
}
}
Answered By - Damanpreet Singh
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.