Androidでグラデーションの背景を作成したいと思います。私はangrytools.comを使ってこれらの2つの形を生成しました。それらを実装する方法が正確にはわかりません。2つの図形でカスタムグラデーションを作成する
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<gradient
android:type="linear"
android:centerX="100%"
android:startColor="#7F000000"
android:centerColor="#FFffffff"
android:endColor="#FFffffff"
android:angle="90"/>
</shape>
-------------------------------------------------
<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="#7F000000"
android:centerColor="#FFffffff"
android:endColor="#FFffffff"
android:gradientRadius="100"/>
</shape>
私が間違っていない場合は、android:backgroundパラメータを1つだけ設定できます。 – Max
はい私はちょうど例を示しています... –