使用运行时生成的元素创建 AlertDialog

发布于 2024-10-20 23:21:54 字数 415 浏览 0 评论 0 原文

我在 Android 开发站点找到了以下文档,该文档适用于使用硬编码元素创建 AlertDialog : http://developer.android.com/guide/topics/ui/dialogs.html#AddingAList

如果您可以对它们进行硬编码,那就可以了。但是,在我的应用程序中,当第一次请求对话框时,我需要在运行时生成项目(在生成之前,我什至不知道项目列表的长度)。

如何使用运行时生成的列表,而不是示例中使用的 AlertDialog 中的项目的 final CharSequence[]

谢谢

I have found the following document at the Android dev site, which works for creating an AlertDialog with hard-coded elements : http://developer.android.com/guide/topics/ui/dialogs.html#AddingAList .

That works fine if you can hard-code them. However, in my application, I need to generate the items at runtime (prior to the generation, I don't even know the length of the items list), when the Dialog is requested for the first time.

How can I use a list generated at runtime, instead of the final CharSequence[] used in the example for the items in the AlertDialog?

Thanks

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

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

发布评论

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

评论(1

后eg是否自 2024-10-27 23:21:54
  1. 仅当您从内部类(本例中为 OnClickListener)访问变量时,它才需要是 final。您是否需要访问内部类中的项目列表?

  2. final 仅表示引用不得更改(= 变量始终指向同一对象)。它没有说明对象是如何创建的。您可以轻松做到:

    列表<字符串>字符串 = new ArrayList();
    strings.add("红色");
    strings.add("绿色");
    strings.add("蓝色");
    
    最终 CharSequence[] items = strings.toArray(new String[strings.size()]);
    
  1. Variable needs to be final only if you access it from within an inner class (OnClickListener in this case). Do you need to access the item list within an inner class?

  2. final only means that reference must not change (= variable always points to same object). It says nothing how object is created. You can easily do:

    List<String> strings = new ArrayList<String>();
    strings.add("Red");
    strings.add("Green");
    strings.add("Blue");
    
    final CharSequence[] items = strings.toArray(new String[strings.size()]);
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文