如何获得android渐变中心光效?

时间:2013-10-23 12:43:26

标签: android android-drawable xml-drawable

我想要一些像下面的图片

enter image description here

我尝试使用可绘制的形状

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<gradient
    android:angle="360"
    android:centerX="50%"
    android:centerY="50%"

    android:gradientRadius="50%"
    android:endColor="#000000"
    android:centerColor="#FFFFFF"
    android:startColor="#000000" >
</gradient>
</shape> 

5 个答案:

答案 0 :(得分:78)

在drawable文件夹中创建一个新的Android xml文件(比如GreyRadial.xml)文件

在您的xml文件中

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

    <gradient
        android:centerColor="#c1c1c1"
        android:endColor="#4f4f4f"
        android:gradientRadius="400"
        android:startColor="#c1c1c1"
        android:type="radial" >
    </gradient>

</shape>

使用

在布局背景中使用此xml
android:background="@drawable/GreyRadial"

答案 1 :(得分:15)

可以使用多个矩形形状在图层列表中近似效果。使用具有中心背景颜色的实心矩形。然后使用两个渐变,开始和结束颜色相同。除了将alpha设置为零外,还要使中心颜色相同。

在下面的代码中,颜色如下:

@color/background_dark = #ffb8860b
@color/background_light = #ffd2b48c
@color/transparent = #00b8860b

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <shape >
            <solid android:color="@color/background_light"/>
        </shape>
    </item>

    <item>
        <shape>
            <gradient 
                android:startColor="@color/background_dark"
                android:centerColor="@color/transparent"
                android:endColor="@color/background_dark"
                android:angle="45"/>
        </shape>
    </item>

    <item>
        <shape>
            <gradient 
                android:startColor="@color/background_dark"
                android:centerColor="@color/transparent"
                android:endColor="@color/background_dark"
                android:angle="135"/>
        </shape>
    </item>

</layer-list>

答案 2 :(得分:9)

再一次解决方案:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <gradient
        android:centerX="50%"
        android:centerY="50%"
        android:endColor="@android:color/black"
        android:gradientRadius="100%"
        android:startColor="@android:color/transparent"
        android:type="radial"/>
</shape>

答案 3 :(得分:0)

这是我解决问题的方法。

<shape android:shape="rectangle">

 <gradient
     android:endColor="@color/your_dark_color"
     android:startColor="@color/your_light_color"
     android:type="radial"
     android:gradientRadius="700"/>

通过更改android:gradientRadius的值,我能够为我获得准确的结果。

答案 4 :(得分:0)

如果您需要的椭圆的纵横比是固定的,那么您可以使用渐变可绘制作为背景,并使用scaleX或scaleY将其拉伸为椭圆。

drawable myradial.xml:

   <?xml version="1.0" encoding="utf-8"?>
   <shape xmlns:android="http://schemas.android.com/apk/res/android"
          android:shape="rectangle">
       <!--Radial gradient centered at middle of top with glow color-->
       <gradient
           android:startColor="FF336699"
           android:endColor="00000000"
           android:centerX="50%"
           android:centerY="50%"
           android:gradientRadius="50%"
           android:type="radial"/>
   </shape>

使用它作为背景进行查看

   <View
       android:layout_width="200dp"
       android:layout_height="100dp"
       android:background="@drawable/myradial"
       android:scaleX="0.5"
       />

如果纵横比不固定,仍然可以在运行时在代码中设置scaleX。

这对所有情况下的每个人都不起作用。它可以制作棘手的布局。一个很好的事情是它是一个单独的渲染过程,相比之下,非常优雅的解决方案在固体上以2个线性渐变发布。它还可用于拉伸任何渐变,例如以22.5度角创建线性渐变。