我在drawable下创建了一个xml,但是我无法理解如何将它提供给我的应用程序?
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#302226"
android:endColor="#6D7B8D"
android:angle="45"/>
<padding android:left="6dp"
android:top="6dp"
android:right="6dp"
android:bottom="6dp" />
<corners android:radius="20dp" />
</shape>
答案 0 :(得分:1)
您必须在xml文件的任何视图的background属性中设置此xml文件。
android:background="@drawable/your_above_xml_file_name"
答案 1 :(得分:1)
//yourfilename.xml
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#302226"
android:endColor="#6D7B8D"
android:angle="45"/>
<padding android:left="6dp"
android:top="6dp"
android:right="6dp"
android:bottom="6dp" />
<corners android:radius="20dp" />
//temp.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:id="@+id/temp"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:background="@drawable/yourfilename"
>
</LinearLayout>
答案 2 :(得分:1)
将此文件设置为您已为其创建此文件的任何视图的背景。喜欢
android:background="@drawable/buttonbg"
其中buttonbg.xml是上面的xml的名称,它保存在drawable中。