Невидимые углы с формой - Android?

У меня есть ниже 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>

И у меня есть ниже:

введите описание изображения здесь

Но я пока вижу углы. Как я могу их невидить?

1 ответ

Попробуй это:

<?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>
Другие вопросы по тегам