多屏应用内容

发布于 2024-12-14 20:49:13 字数 144 浏览 1 评论 0原文

我有一个已启动并正在运行的多屏应用程序,您可以按四个按钮。一个用于列出电话号码,一个用于列出餐厅,一个用于列出宿舍,一个用于列出教学楼。

这是列表视图的样子

I have a multiscreen app that is up and running and you can press four buttons.One to list phone numbers one to list dinning halls one to list residence halls and one for academic buildings.

Here is what the listview looks like

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

稍尽春風 2024-12-21 20:49:13

我不太明白你的问题。

您需要不同的活动。每一个都将是您的新“屏幕”。

您可以使用每个按钮来调用每个 Activity 使用 Intent 对象。

在每个 Activity 中放置一个 ListView 组件。这个ListView对象将“列出”(因此得名)多个值。

这是 Android 的概述(简化)。您似乎不太了解 一般 Android 基础知识,所以我的建议是使用 Google 和 Android 开发指南来研究上述每个组件。当然,还有 StackOverflow。


我的问题是每页一个,如何列出多个条目?

例如,如果我想在该页面上列出 10 个电话号码。

正如我所说,创建一个“页面”(Activity),其中包含一个 ListView。要使用值(您的电话号码)填充 ListView,请参阅 本指南(请参阅页面中间的“列表视图”)。要处理用户在列表中选择的项目,请提供 onListItemClick(ListView Parent, View v, int position, long id)

上面的指南展示了如何做到这一点。

I don't understand your question very well.

You need different Activities. Each one will be your new "screen".

You use each of those buttons to call each Activity using Intent objects.

Inside each activity you place a ListView component. This ListView object will "list" (hence the name) multiple values.

This is an overview of Android (simplification). You don't seem to know much about Android fundamentals in general, so my advice is to research each of the above components using Google and the Android Dev Guide. And, of course, StackOverflow.


My question is one each page how would I list multiple entries?

For example if i wanted to list 10 phone numbers on that page.

As I said, create a "page" (Activity) with a ListView inside it. To populate the ListView with values (your phone numbers), see this guide (see 'List Views' in the middle of the page). To work with the item that the user selected in the list, provide the onListItemClick(ListView parent, View v, int position, long id).

The guide above shows how to do that.

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