Android 背景渐变径向
Android background gradient radial
我希望我的应用程序具有径向渐变背景,我想我做到了,但在运行时我的应用程序只显示一种颜色。
这是我的可绘制背景
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:type="radial"
android:gradientRadius="360"
android:startColor="@color/color_start"
android:endColor="@color/color_end" />
我在 activity XML 中这样称呼它:
android:background="@drawable/background_app"
PD:抱歉我的英语不好
android:gradientRadius="250" 将被忽略。您应该指向具有 px 或 dp 值的 dimen 资源,例如:android:gradientRadius="@dimen/gradient_radius"
我希望我的应用程序具有径向渐变背景,我想我做到了,但在运行时我的应用程序只显示一种颜色。
这是我的可绘制背景
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:type="radial"
android:gradientRadius="360"
android:startColor="@color/color_start"
android:endColor="@color/color_end" />
我在 activity XML 中这样称呼它:
android:background="@drawable/background_app"
PD:抱歉我的英语不好
android:gradientRadius="250" 将被忽略。您应该指向具有 px 或 dp 值的 dimen 资源,例如:android:gradientRadius="@dimen/gradient_radius"