我在资产文件夹中有一个背景 xml desc文件,如何获得 drawable obj? xml文件如下:
<?xml version="1.0" encoding="utf-8"?>
<item android:state_focused="false">
<shape>
<gradient android:startColor="#2b2c2d" android:endColor="#404142" android:angle="270" />
</shape>
</item>
<item android:state_focused="true">
<shape>
<gradient android:startColor="#2b2c2d" android:endColor="#404142" android:angle="270" />
</shape>
</item>
答案 0 :(得分:1)
只需将文件放在drawable文件夹中,您就可以从那里获取它作为R.drawwable.filename(通过代码)和@ drawable / yourfilename(通过XML)。
通常,您不应将shapes.xml文件放在assets文件夹中。在资源文件夹中,我们通常会放置自定义字体,音频文件,视频文件等。
答案 1 :(得分:0)
在您的布局中,您可以将drawable设置为背景,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/drawable_name_without_the_.xml"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>