0

Ich habe unten shape:Unsichtbare Ecken mit Form - Android?

<?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> 

Und ich habe unten:

enter image description here

Aber ich sehe noch Ecken. Wie kann ich sie unsichtbar machen?

Antwort

0

Versuchen Sie folgendes:

<?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>