0
我想創建一個從中心向外的梯度。 (或向內)。所以外部是相同的顏色,並且當你靠近中心時,它變成紅色或其他東西。梯度繪製不工作
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"
>
<gradient
android:startColor="#ffffff"
android:endColor="#ff00ff00"
android:centerX="50%"
android:centerY="50%"
android:gradientRadius="50%"
android:type="radial"
/>
</shape>
感謝。 :)'gradientRadius'似乎是從中心開始改變顏色的像素距離。所以我把它設置爲1000,使整個屏幕漸變:)(與50,它只是一個小小的圓梯度) – Mcloving
你歡迎:) – Gridtestmail