如何在xml android中绘制一个具有动态渐变形状的圆圈

时间:2015-02-09 15:01:55

标签: android xml gradient shape

我想重新创建此图片:

enter image description here

我有一个RelativeLayout,文字百分比居中TextView 以及带有白色背景的居中ImageView

    <RelativeLayout
        android:id="@+id/fuel_lvl"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="29dp"
        android:layout_marginRight="29dp"
        android:layout_toRightOf="@id/max_speed" >

        <ImageView
            android:id="@+id/image_fuel_lvl"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:src="@drawable/icon_fuel_lvl" />

        <TextView
            android:id="@+id/text_fuel_lvl"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/sensorvalue3"
            android:textAppearance="@style/TextAppearance.DigitalBoldItalic"
            android:textColor="#fff"
            android:textSize="60dp" />
    </RelativeLayout>

所以,我需要更改圆形渐变背景(尚未实现),但我想用xml形状。

你能帮助我吗?

0 个答案:

没有答案