0

I want to create this shape for my app but I can't create this shape in the editor

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Abbas Jafari
  • 1,492
  • 2
  • 16
  • 28

1 Answers1

3

Create a drawable called bg_custom_textview.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
   android:shape="rectangle">

<solid android:color="@color/SomeColor"
        />
<corners
        android:topLeftRadius="10dp"
        android:topRightRadius="10dp"
        />
</shape>

Use this as your textview background,

<TextView
android:background="@drawable/bg_custom_textview"
/>
Manoj Perumarath
  • 9,337
  • 8
  • 56
  • 77