我正在为Button
提供自定义形状。用于background
的{{1}}的xml文件如下:
Button
我在应用程序中使用片段。使用此<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle" >
<solid android:color="#2E8B57" />
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="20dp"
android:topLeftRadius="0dp"
android:topRightRadius="20dp" />
</shape>
的B enter code here
utton会在平板电脑中显示预期的行为,但在手机中查看时,显示会发生变化。这些是平板电脑和手机的屏幕截图:
可以看出,在平板电脑视图中,drawable
从顶部和底部都是圆形的,但不是从左侧和左侧(这是我想要的)。但是在手机中,顶部和底部都是圆形的。我错过了什么吗?