gpt4 book ai didi

Android ArrayAdapter

转载 作者:行者123 更新时间:2023-11-29 21:53:26 25 4
gpt4 key购买 nike

在开发 Android 应用程序时,我从类似于“Item 1”、“Item 2”、“Item 3”的网站上得到了一行响应我需要将这一行转换为一个列表,以便在 simplelistitem 的数组适配器中使用。任何帮助将不胜感激,谢谢。这是代码。

try {
BufferedReader reader = new BufferedReader(new InputStreamReader(webs,"iso-8859-1"),8);
String[] names = new String[] {reader.readLine()};
webs.close();
setListAdapter (new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, names));
} catch(Exception e) {
Log.e("Log_tag", "Error converting results"+e.toString());
}

最佳答案

也许这段代码适合你:

String namesString = reader.readLine();
String [] names = namesString.split(", ");
//optional if you wish to remove the quotes
for (int i = 0; i < names.length; i++) {
names[i] = names[i].substr(1, names[i].length() - 1);
}
//use it as you wish

关于Android ArrayAdapter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13874177/

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