如何在两个实际布局之间插入表格?
我创建了一个相对布局,在该布局下我创建了 3 个相对布局
1-用于顶部文本视图
2-底部按钮
3-对于滚动视图
,现在我想在第一个相对布局下方和第二个相对布局上方插入一个表格,我应该使用哪种布局?表有 3 列,第一列和第二列作为文本视图,第三列作为编辑文本,表上显示的数据来自数据库。 所以我想知道我应该使用哪种布局?我怎样才能显示表格?
I have created a relative layout under which i created 3 relative layout
1-for top textviews
2-for buttons at the bottom
3-for he scroll view
now i want to insert a table below 1st relative layout and above 2nd relative layout,which layout should i use? table has 3 columns first cloumn and secound column as text view and 3rd colums as edit text,the data being displayed on the table is coming from database.
so i wanna know which layout shall i use? and how can i display the table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好使用LinearLayout
看这个
注意:你还可以设置TextView和EditText的宽度,更重要的是你可以设置
重力并相应地对齐它。
另外,当您需要动态添加行时,LinearLayout 很有用。它将是
当您从数据库获取数据时对您有用
Its better to use LinearLayout
See this
Note: You can also set width of TextView and EditText and more importantly you can set the
gravity and align it accordingly.
Also, LinearLayout is useful when you need to add the rows dynamically.It will be
useful to you as you are getting the data from database