gpt4 book ai didi

java - 在存储在 hashmap android 中的 ListView 中显示图像

转载 作者:行者123 更新时间:2023-11-30 22:41:21 25 4
gpt4 key购买 nike

我正在制作一个 Android 应用程序,我通过 PHP 和 JSON 从 mySQL 数据库中捕获数据,我希望根据 ListView 中的数据库数据显示图像,该数据存储在 HashMap 中:

HashMap <String, String> resultp = new HashMap <String, String> ();
resultp = data.get(position);
public ListViewAdapter(Context context,
ArrayList<HashMap<String, String>> arraylist) {
this.context = context;
data = arraylist;

}

resultp.get (MainActivity.PUBLIC); this gives me the position, I want the data. How I can do?
when I change resultp.get (MainActivity.PUBLIC) for the name of a resource of my project it works

if (image != null) {
                 Resources res = context.getResources ();
                 String Sicon = "com.resources.hashmap: drawable /" + resultp.get (MainActivity.PUBLIC);
                 int id = context.getResources () getIdentifier (Sicon, "drawable" context.getPackageName ());
               
                 imagen.setImageResource (id);
             }

最佳答案

这里有很好的引用资料,您可以通过它们清楚地了解如何使用自定义列表和数组适配器。

Example 1 Example 2 Example 3

关于java - 在存储在 hashmap android 中的 ListView 中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31063641/

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