动态地在视图背景下更改形状的纯色

时间:2014-09-23 17:57:44

标签: view colors background shape

我使用rectangle.xml来填充相对布局下的视图背景" backFace"在top.xml中。

top.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/backFace"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
>
<View
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:gravity="center"
    android:background="@drawable/rectangle"/>
</RelativeLayout>

rectangle.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
<stroke android:width="2dp" android:color="#000000" />
<padding android:left="2dp"
    android:top="2dp"
    android:right="2dp"
    android:bottom="2dp" />
<corners android:radius="5dp" />
<solid android:color="#ffffffff" />

如何动态访问/更改形状的纯色?

0 个答案:

没有答案