我在玩角球,我对这种行为很感兴趣。 XML布局:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_header_title"

    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:padding="10dip"
    android:gravity="center_vertical"

    android:background="@layout/my_outline"

    android:text="Example"
    android:textSize="14sp"
    android:textStyle="bold"

/>

这是my_outline.xml:(注意corners标签)
<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

<corners
        android:topLeftRadius="10dip"
        android:bottomRightRadius="10dip"/>

<padding
        android:left="50dip"
        android:top="5dip"
        android:bottom="5dip" />

<solid
        android:color="#0fff" />

<stroke
        android:width="1dip"
        android:color="#f0f0f0" />

</shape>

图片:

将形状更改为:
<corners
        android:topLeftRadius="10dip"
        android:bottomLeftRadius="10dip"/>

你可以清楚地看到底角是倒置的(所有情况都会发生,我剪掉了“星期三”只是为了说明)。这是我手机的图片(Nexus S 2.3.2,但也发生在模拟器上):

你知道吗?我看着谷歌(“android shape倒角”),一无所获。这里也没有“相关问题”。

最佳答案

是的,这是一个值得注意的错误。有关更多链接和引用信息,请参阅 this answer。 :P

10-07 19:44
查看更多