0

解决方案:嗯,它是我的模拟器和 Eclipse 布局编辑器。在真正的手机上它工作得很好:(

问题:

用于角的 android:topLeftRadius 覆盖了 topRight、bottomRight 和 bottomLeft。

因此,虽然我希望右侧是圆形的,但左侧应该是方形的,但两边都是方形的。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<solid android:color="#F000" />

<stroke
    android:width="1px"
    android:color="#BB000000" />

<padding
    android:bottom="7dp"
    android:left="10dp"
    android:right="10dp"
    android:top="7dp" />

<corners
    android:bottomLeftRadius="0dp"
    android:bottomRightRadius="10dp"
    android:topLeftRadius="0dp"
    android:topRightRadius="10dp" />

<gradient
    android:angle="90"
    android:centerColor="#00004C"
    android:endColor="#000099"
    android:startColor="#000000"
    android:type="linear" />

</shape>

我只是在一个按钮的 xml 中调用它。

android:background="@drawable/button_layout"

4

2 回答 2

0

这可能与 3.0 之前的 Android 版本中的错误有关(请参阅https://code.google.com/p/android/issues/detail?id=9161

您可以通过为不同的 api 版本设置单独的可绘制文件夹来解决它。

另请参见Corner radius Android 出现问题

于 2013-09-18T15:13:53.713 回答
0

你忘记了你需要一个<shape>围绕你的属性。这段代码对我有用:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
  <solid android:color="#F000" />

  <stroke
     android:width="1px"
     android:color="#BB000000" />

  <padding
     android:bottom="7dp"
     android:left="10dp"
     android:right="10dp"
     android:top="7dp" />

  <corners
     android:bottomLeftRadius="0dp"
     android:bottomRightRadius="10dp"
     android:topLeftRadius="0dp"
     android:topRightRadius="10dp" />

  <gradient
     android:angle="90"
     android:centerColor="#00004C"
     android:endColor="#000099"
     android:startColor="#000000"
    android:type="linear" />

</shape>
于 2013-09-18T14:50:58.570 回答