Android 开发人员:这是什么类型的工具?

发布于 2024-12-15 18:21:36 字数 204 浏览 0 评论 0原文

我过去几个小时一直在寻找。但我完全不知道我应该寻找什么,因为我不知道它叫什么。

我想要一个项目列表 单击某个项目将显示该项目的“编辑活动”。但在每个项目的右侧,应该有一个可单击的红色按钮来删除该项目。我在其他应用程序中甚至在 Android 通知中都看到过这种情况。

这是标准工具/小部件吗?或者我需要自己创建这个?

如果它是标准工具,它叫什么?

I've been searching for the past couple of hours. But I'm at a total loss as to what I should be searching for because I don't know what it's called.

I want to have a list of items Clicking on an item will bring up the "Edit Activity" for that item. But to the right of each item, should be a clickable red button to DELETE that item. I've seen this in other apps even in Android notifications.

Is this a standard tool/widget? Or do I need to create this myself?

If it's a standard tool, what's it called?

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

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

发布评论

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

评论(1

因为看清所以看轻 2024-12-22 18:21:36

基本思想是:

  1. 创建或实现 ListViewActivity,它对每个项目具有以下控件: TextView、按钮(用于编辑和删除)
  2. 创建另一个 EditActivity,每当用户单击编辑按钮时都会启动该 EditActivity

以下是 #1 的一些资源:

  1. http://www.androidpeople.com/android-listview-example
  2. http://developer.android.com/resources/tutorials/views/hello-listview .html
  3. http://www.vogella.de/articles/AndroidListView/article.html

这里是 #2 的资源:

  1. http://developer.android.com/reference/android/content/Intent.html
  2. http://developer.android.com/guide/topics/intents/intents-filters .html
  3. http://www.vogella.de/articles/AndroidIntent/article.html

the basic idea is to:

  1. create or implement ListViewActivity that has the following control for each item: TextView, Button (for edit & delete)
  2. create another EditActivity that is launched whenever user click on edit Button

Here's some resources for #1:

  1. http://www.androidpeople.com/android-listview-example
  2. http://developer.android.com/resources/tutorials/views/hello-listview.html
  3. http://www.vogella.de/articles/AndroidListView/article.html

And here's resources for #2:

  1. http://developer.android.com/reference/android/content/Intent.html
  2. http://developer.android.com/guide/topics/intents/intents-filters.html
  3. http://www.vogella.de/articles/AndroidIntent/article.html
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文