Arshad
Arshad

Reputation: 61

Android Draw Custom Shape

I am new to android, can you please guide how I can draw following shape in android? I will appreciate any help. Thanks.enter image description here

Upvotes: 1

Views: 420

Answers (1)

Damanpreet Singh
Damanpreet Singh

Reputation: 726

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()

     }
   }

Upvotes: 2

Related Questions