在 Eclipse 中编程时,我通常会启用几乎所有警告,因为它们可以帮助我发现可能的编程错误或疏忽。然后我试图编写我所有的程序,这样我就不会收到任何警告。但是,对于 Android,总是有最后一个警告,我觉得很烦人:
* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package foo.bar.someappname;
public final class R {
...
public static final class attr { /* <<< this empty class creates a compiler warning */
}
...
}
显然,attr-class 是指可以在文件 attr.xml 中定义的一些可选样式数据。我不想定义任何自己的样式,但是对于 attr.xml 来说,在该 attr 类中出现“某物”以使最后一个警告被静音的最小虚拟内容是什么?