我发现了很多这样的例子,据我所知,我做得对,但我仍然得到一个错误。我创建了一个border.xml 文件并将其放入一个drawable 文件夹中。该文件夹不存在,所以我必须创建它。我感觉我的问题是我保存文件的位置,或者可能需要在某个地方注册它。在这里你可以看到文件。
这是border.xml的代码
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<stroke android:width="2dp" android:color="#515151"/>
<corners android:radius="3dp" />
<padding android:left="10dp" android:top="5dp"
android:right="10dp" android:bottom="5dp" />
</shape>
这就是我尝试使用它的方式
<TableRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/border.xml"
android:padding="5dp">
我得到的错误是:
error: Error: No resource found that matches the given name (at 'background' with value
'@drawable/border.xml').