0

I have bellow shape :

<?xml version="1.0" encoding="utf-8"?><!--  res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="10dp"
    android:shape="rectangle">
    <solid android:color="#434A54" />

    <corners
        android:bottomLeftRadius="15dp"
        android:bottomRightRadius="15dp" />
</shape>

And I have bellow :

enter image description here

But I see corners yet. How I can invisible them ?

1 Answers1

0

Try this:

<?xml version="1.0" encoding="utf-8"?><!--  res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:padding="10dp"
    android:shape="rectangle">
    <solid android:color="#434A54" />
    <stroke android:color="#00000000" android:width="1dp" />
    <corners
        android:bottomLeftRadius="15dp"
        android:bottomRightRadius="15dp" />
</shape>
KevinZ
  • 756
  • 1
  • 12
  • 26