如何在屏幕底部添加按钮并编辑文本作为页面的第三列?

发布于 2024-10-21 01:51:33 字数 97 浏览 2 评论 0原文

我想创建一个页面,以这样的方式创建一个列表,其中前两列显示产品名称及其成本,第三列应该是编辑文本来填充数量。此外,我需要底部的三个按钮页面的。我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赠我空喜 2024-10-28 01:51:33

创建一个包含 2 个布局的相对布局:

  1. 第一个布局为

    TableLayout要求。

  2. 另一个将按钮保留在底部的RelativeLayout:

对于3个按钮,您设置属性android:layout_alignParentBottom="true"
对于第一个按钮,您给出 android:layout_alignParentLeft="true"
第二个按钮和第三个按钮提供 android:toRightOf="" 属性。

Create a RelativeLayout that contains 2 layouts:

  1. TableLayout for the first requirement.

  2. 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.

肤浅与狂妄 2024-10-28 01:51:33

为此,您需要使用自定义 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文