中心から外側に向かってグラデーションを作成しようとしています。(または内向き)。ですから、外側は同じ色で、中央に近づくと赤か何かに変わります。
<?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>