形状以所需的椭圆形状绘制,但形状的边缘看起来像素化
我正在尝试的代码是
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
android:useLevel="false" >
<solid android:color="#ffcfcf" />
<size
android:height="50dp"
android:width="50dp" />
</shape>
如何从xml文件本身获得平滑的边缘。
我正在测试android jelly bean以便在旧手机上进行测试,在Lolipop上没有边缘问题。