在Android中创建渐变形状

时间:2015-12-01 20:27:18

标签: android-layout android-drawable

如何创建带有渐变线作为可绘制资源的圆形,如下所示:

enter image description here

2 个答案:

答案 0 :(得分:0)

这是一个简单的圈子,可以作为Android中的drawable。

    <?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

   <solid 
       android:color="#666666"/>

   <size 
       android:width="120dp"
        android:height="120dp"/>
</shape>

您可以从Java代码中应用颜色过滤器(请参阅Drawable类)

答案 1 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadiusRatio="3"
android:shape="ring"
android:thicknessRatio="8"
android:useLevel="false">
<gradient
    android:angle="270"
    android:centerX="50%"
    android:centerY="50%"
    android:endColor="#FF4AA7D0"
    android:gradientRadius="100"
    android:startColor="#FFE66433"
    android:type="linear"
    android:useLevel="false" />
</shape>