I want to create this shape for my app but I can't create this shape in the editor
Asked
Active
Viewed 1,562 times
0
-
2You should be able to make a nine patch for this – OneCricketeer Feb 13 '19 at 04:27
1 Answers
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