【发布时间】:2016-08-22 06:18:01
【问题描述】:
我已经对activity_main.xml 应用了渐变,当我在marshmallow 设备上运行时应用了渐变,但是当我在kitkat 设备上运行时不应用渐变。这是activity_main.xml的样子
棉花糖用户界面屏幕:
Kitkat UI 屏幕:
这里是activity_main.xml源代码
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_gradient"
android:focusableInTouchMode="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" />
</ScrollView>
这是我正在使用的渐变代码
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:centerColor="#295e7c"
android:centerY="0"
android:endColor="#303a70"
android:gradientRadius="775dp"
android:startColor="#56a68d"
android:type="radial" />
<corners android:radius="0dp" />
</shape>
【问题讨论】:
标签: android android-layout gradient android-6.0-marshmallow android-4.4-kitkat