是否有可能仅使用可绘制对象来创建具有向外辐射的白色模糊的黑色背景?
这是最终产品,虽然齿轮是 ImageViwe,文本是 TextView,但我希望将黑白模糊设置为单个可绘制对象,我可以将其分配给包含的 LinearLayout:
这是布局的代码(最终在 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>