android:topLeftRadius覆盖其他角落

时间:2013-09-18 14:35:13

标签: android android-layout

解: 那么它是我的模拟器和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的按钮中调用它。

  

机器人:背景= “@绘制/ button_layout”

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

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

您可以通过为不同的api版本提供单独的可绘制文件夹来解决此问题。

另见Something's wrong in Corner radius Android