gpt4 book ai didi

java - 如何将图像放入链表?

转载 作者:行者123 更新时间:2023-12-02 07:17:13 24 4
gpt4 key购买 nike

只是想问一下如何将图片放入链表中?因为到目前为止我所看到的基础是字符串 char 是在链接列表中存储时使用最多的对象。所以我只是好奇是否可以将图像放入链接列表,如果可以,任何人都可以给我一个有关如何将图像放入链接列表的语法。因为我目前正在创建一个应用程序,您可以在单击“完成”按钮后使用键盘输入“A”等单词,字母 A 的图像将出现在下一个 Activity 中。

最佳答案

在java中它看起来像这样。

List<Image> images = new LinkedList<Image>() ;

在 android 中我会使用位图,如下所示,

List<Bitmap> images = new LinkedList<Bitmap>();   

I am currently creating an app where you input a word using the keyboard like "A" after clicking the done button an Image of a letter A will appear on the next activity.

我猜你正在将图像存储在某个地方。在这种情况下,您可以只使用图像路径而不是位图本身,因为存储位图可能会占用大量内存。使用HashMap这里对您来说是一个不错的选择。

 HashMap< String, String> s = new HashMap<String, String>();

Hashmap 将具有键和值。

 s.put("A", "filepath to image which has a");

现在您可以使用如下所示的键值获取该文件的路径。

 s.get("A");

关于java - 如何将图像放入链表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14796631/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com