Android - Opacity Fade Drawable

时间:2012-05-31 16:07:28

标签: android xml resources drawable

是否可以使用drawables创建一个带有向外辐射白色模糊的黑色背景?

以下是最终产品的内容,虽然齿轮是ImageViwe,而文本是TextView,但我希望黑色+白色模糊是一个可绘制的,我可以分配给包含的LinearLayout:

enter image description here

这是布局的代码(最终在GridView中使用)。如果可能的话,我想将LinearLayout的背景设置为前面提到的Drawable:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp"
    android:background="#000000"
    android:gravity="center_vertical|center_horizontal"
    android:orientation="vertical"
    android:padding="5dp" >

    <ImageView
        android:id="@+id/tile_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:adjustViewBounds="true"
        android:contentDescription="@string/temp_image"
        android:src="@drawable/ic_logo" />

    <TextView
        android:id="@+id/tile_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

1 个答案:

答案 0 :(得分:9)

当然,以下是径向渐变可绘制的并将用作背景。更改颜色/渐变半径以获得所需效果。 (在可绘制文件夹“ radialbg ”中创建xml文件,或者您喜欢哪个名称)

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"      
        android:shape="rectangle">
<gradient
    android:startColor="#FFFFFFFF"
    android:endColor="#00FFFFFF"
    android:gradientRadius="270"
    android:type="radial"/>

</shape>

要应用它,请在linearlayout中使用以下行

android:background="@drawable/radialbg">