1

Android アプリで作業していて、"Item 1"、"Item 2"、"Item 3" のような Web サイトから 1 行の応答が返ってきました。この 1 行を配列アダプターで使用するリストに変換する必要があります。シンプルリスト項目。どんな助けでも感謝します、ありがとう。これがコードです。

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());
}
4

1 に答える 1

2

たぶん、このコードはあなたのために行います:

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
于 2012-12-14T07:10:11.113 に答える