需要帮助从 Activity 调用 Listactivity

发布于 2024-11-03 05:41:52 字数 53 浏览 0 评论 0原文

我需要帮助知道如何从 Activity 类调用 ListActivity?有人可以帮助我吗?

I need help to know, how can I call ListActivity from the Activity class? Can anyone help me?

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

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

发布评论

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

评论(2

笑看君怀她人 2024-11-10 05:41:52

我不确定“从 Activity 类调用 ListActivity”是什么意思。

如果您正在寻找有关使用 ListActivity 和/或 ListViews 的信息,请查看 http://developer.android.com/guide/tutorials/views/hello-listview.html是吗例如,可以在 Android 上实现吗?

如果您正在查找有关从另一个 Activity 启动 ListActivity 的信息,例如当按下非 ListView Activity 上的按钮时,请注意,这与从其他 Activity 启动第二个 Activity 没有太大区别。请参阅 http://developer.android.com/resources/tutorials/notepad/index .html 就是这样一个例子。

记事本教程还包括一个 ListActivity 启动非 ListView Activity 的示例,这与您最初可能询问的内容非常接近。

如果您仍然遇到困难,请尝试询问一个非常具体的问题,了解您遇到的困难,包括完整的最少代码来复制您遇到的任何问题。

I'm not sure what you mean by "call ListActivity from the Activity class".

If you're looking for information on using ListActivity and/or ListViews, take a look at http://developer.android.com/guide/tutorials/views/hello-listview.html and Is it realizable on Android? for examples.

If you're looking for information on starting a ListActivity from another Activity, for example when a button on the non-ListView activity is pressed, note that this isn't much different from just starting a second Activity from some other Activity. See http://developer.android.com/resources/tutorials/notepad/index.html for such an example.

The notepad tutorial also includes an example of a ListActivity starting a non-ListView Activity, which is very close to what you may be originally asking about.

If you're still stuck, try to ask a very specific question about what you're stuck on, including complete minimal code to replicate any problems you're having.

鹿! 2024-11-10 05:41:52

您必须包含在清单文件中。

<activity android:name=".MyListActivity" android:label="@string/app_name" />

You have to include in the Manifest file.

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