我试图像下一个代码一样显示渐变:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:type="radial"
android:centerX="50%"
android:centerY="50%"
android:startColor="#ffdc241f"
android:endColor="#FF000000"
android:gradientRadius="100"/>
</shape>
但出于某种原因,我只看到了这一点:
有什么问题? Android Wear支持渐变?
谢谢。