如何在屏幕底部添加按钮并编辑文本作为页面的第三列?
我想创建一个页面,以这样的方式创建一个列表,其中前两列显示产品名称及其成本,第三列应该是编辑文本来填充数量。此外,我需要底部的三个按钮页面的。我是 android 编程新手,请帮助
i want to create a page ,in such a way that a list should come in which first two columns,shows product name and its cost,and the third column should be an edit text to fill quantity.moreover i need three buttons at the bottom of the page.i am a newbie t android programming,plz help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个包含 2 个布局的相对布局:
TableLayout要求。
另一个将按钮保留在底部的RelativeLayout:
对于3个按钮,您设置属性
android:layout_alignParentBottom="true"
。对于第一个按钮,您给出
android:layout_alignParentLeft="true"
第二个按钮和第三个按钮提供
android:toRightOf=""
属性。Create a RelativeLayout that contains 2 layouts:
TableLayout for the first requirement.
Another RelativeLayout for keeping buttons at the bottom:
For 3 buttons u set the property
android:layout_alignParentBottom="true"
.For the 1st button u give
android:layout_alignParentLeft="true"
and the 2nd button and 3rd buttons u give
android:toRightOf=""
property.为此,您需要使用自定义 Listiview。您的主视图将根据需要包含一个列表视图和底部的 3 个按钮。
查看以下自定义列表视图示例
自定义列表视图
You will need to use custom Listiview for this pupose. Your mainview will contain a listview and the 3 buttons at the bottoms as you want.
Checkout following example for custom listview
Custom Listview