问题
I'm trying to create a custom EditText that has both rounded corners and an inner shadow.
I made a layer list that creates the inner shadow,
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<shape android:shape="rectangle">
<solid android:color="#6C6C6C" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="@color/ashes" />
</shape>
</item>
<!-- White Top color -->
<item android:top="3px" android:left="3px">
<shape android:shape="rectangle">
<solid android:color="#FFFFFF" />
</shape>
</item>
</layer-list>
The output looks like this,
How can I also add a rounded shape?
回答1:
Add a corners tag inside your shape tags:
<corners
android:radius="5dp" />
来源:https://stackoverflow.com/questions/24537517/designing-edittext-with-rounded-corners-inner-shadow