本文介绍了Android的警告和QUOT;这样的TableRow观点是无用的(无儿无女,没有背景,没有ID)QUOT;的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Eclipse中警告occours当我试图在XML中这个警告正值布局的部分表行的是Android表格布局:

<TableRow android:layout_width="fill_parent" android:layout_height="wrap_content">
</TableRow>

Plese tell me how to overcome this warning.Thanks in advance.

解决方案

If you know that you use this TableRow (e.g. you add children to it later in the code) just ignore the warning.

Upd: you can't use this TableRow in code without id assigned to it. Why do you need the TableRow?

这篇关于Android的警告和QUOT;这样的TableRow观点是无用的(无儿无女,没有背景,没有ID)QUOT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 16:08