0

私は怒鳴るshapeを持っている:形状が見えないコーナー - 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> 

と私は怒鳴る持っている:

enter image description here

をしかし、私はまだコーナーを参照してください。どのように私はそれらを見えなくすることができますか?

答えて

0

これを試してみてください:

<?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> 
関連する問題