如何创建自定义可绘制对角渐变
How to create the custom drawable diagonal gradient
我想创建附图中显示的背景渐变。
目前我正在使用这个 xml,它没有提供所需的效果:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="225"
android:endColor="#FF5C1E"
android:startColor="#A300F3"
android:type="linear"
android:useLevel="false" />
</shape>
请帮帮我。
你应该使用radial
类型的gradient
来使用这个你应该设置coordinates
X and Y as centerX
and centerY
and finally for 半径 使用此 gradientRadius
字段。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:centerX="0.9"
android:centerY="0.1"
android:endColor="#FF5C1E"
android:gradientRadius="1700"
android:startColor="#A300F3"
android:type="radial" />
</shape>
我想创建附图中显示的背景渐变。
目前我正在使用这个 xml,它没有提供所需的效果:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="225"
android:endColor="#FF5C1E"
android:startColor="#A300F3"
android:type="linear"
android:useLevel="false" />
</shape>
请帮帮我。
你应该使用radial
类型的gradient
来使用这个你应该设置coordinates
X and Y as centerX
and centerY
and finally for 半径 使用此 gradientRadius
字段。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:centerX="0.9"
android:centerY="0.1"
android:endColor="#FF5C1E"
android:gradientRadius="1700"
android:startColor="#A300F3"
android:type="radial" />
</shape>