帮助在 .java 活动中创建 TableLayout
我在活动内创建表格布局时遇到问题。到目前为止,我设法使用文本视图显示结果查询。
( (TextView) view.findViewById(R.id.tv_id) ).setText( listItem.getId()+"");
( (TextView) view.findViewById(R.id.tv_name) ).setText( listItem.getName() );
( (TextView) view.findViewById(R.id.tv_age) ).setText( listItem.getAge()+"" );
如果您能帮我将此文本视图转换为表格布局,我将不胜感激。
感谢您的帮助
I am having problem create a tablelayout inside an activity. So far i managed to display the resulting query using textview.
( (TextView) view.findViewById(R.id.tv_id) ).setText( listItem.getId()+"");
( (TextView) view.findViewById(R.id.tv_name) ).setText( listItem.getName() );
( (TextView) view.findViewById(R.id.tv_age) ).setText( listItem.getAge()+"" );
i would appreciate it if you can help me turn this textview into tablelayout.
thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在布局 xml 中执行此操作。如果这是该活动的唯一输出,则 xml 将类似于:
如果有更多行,则将其全部包装在 ScrollView 中,以便 ui 可以滚动。
You need to do this in the layout xml. If this is the only output of the activity the xml would look something like:
If there will be more rows wrap it all in a ScrollView so the ui is scrollable.