尝试向TableRow添加边框时出错

时间:2013-04-15 21:52:13

标签: android tablerow xml-drawable

我已经找到了很多这方面的例子,据我所知,我做得对,但我仍然收到错误。我创建了一个border.xml文件并将其放入一个可绘制的文件夹中。该文件夹不存在,所以我不得不创建它。我有一种感觉我的问题是我保存文件的地方,或者我需要在某处注册它。在这里你可以看到文件。 enter image description here

这是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').

1 个答案:

答案 0 :(得分:2)

在没有android:background="@drawable/border"

的情况下尝试.xml