使用xml

时间:2018-03-04 17:14:54

标签: android xml drawable

我正在努力实现这样的绘制:

gravity right circle

我使用这个xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:gravity="end">
    <shape
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="oval"
        >
        <size
            android:width="@dimen/bullet_size"
            android:height="@dimen/bullet_size"
            />
        <solid android:color="@color/colorPrimary"/>
    </shape>
</item>
</layer-list>

但得到了这个:

result

任何想法可能出错?

我使用重力右圆圈如下:

textView.setBackgroundResources(R.drawable.right_shspe);

2 个答案:

答案 0 :(得分:1)

相应地更改宽度和高度,它将固定形状

答案 1 :(得分:1)

我认为你应该把把椭圆形状保持垂直的物品居中,一切都会好的。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:gravity="end|center_vertical">
    <shape
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="oval"
        >
        <size
            android:width="@dimen/bullet_size"
            android:height="@dimen/bullet_size"
            />
        <solid android:color="@color/colorPrimary"/>
    </shape>
</item>
</layer-list>