data1 hello hi
data2 hello2 hi
data3 hi Hello
我想知道应该使用什么,TableLayout?linearLayout还是RelativeLayout?哪个视图实现布局会更好?我也想用XML代码实现这个布局,请教各位帮忙,谢谢!
答案 0 :(得分:0)
IT完全取决于您想要设计的GUI,以及您希望如何放置GUI对象。 Android官方网站提供了有关此主题的非常丰富且有用的教程:
http://developer.android.com/guide/topics/ui/declaring-layout.html
http://developer.android.com/guide/topics/ui/declaring-layout.html#CommonLayouts
答案 1 :(得分:0)
你需要搬家吗?与任何对象互动?
如果您只想要简单的东西,可以使用TableLayout。如果您只需要支持ICS(Android 4.0)及更高版本,您还可以签出GridLayout。
LinearLayout可能不是你性能方面的最佳选择(不会做很多计算)。如果你的表中有很多元素,那么RelativeLayout也不是最好的。
您还可以向Google员工查看有关TableLayout的this answer。