多屏应用内容
我有一个已启动并正在运行的多屏应用程序,您可以按四个按钮。一个用于列出电话号码,一个用于列出餐厅,一个用于列出宿舍,一个用于列出教学楼。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太明白你的问题。
您需要不同的
活动
。每一个都将是您的新“屏幕”。您可以使用每个按钮来调用每个
Activity
使用Intent
对象。在每个 Activity 中放置一个
ListView
组件。这个ListView对象将“列出”(因此得名)多个值。这是 Android 的概述(简化)。您似乎不太了解 一般 Android 基础知识,所以我的建议是使用 Google 和 Android 开发指南来研究上述每个组件。当然,还有 StackOverflow。
正如我所说,创建一个“页面”(
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
usingIntent
objects.Inside each activity you place a
ListView
component. ThisListView
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.
As I said, create a "page" (
Activity
) with aListView
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 theonListItemClick(ListView parent, View v, int position, long id)
.The guide above shows how to do that.