Webページからデータを設定するコードをいくつか書きましlistview
た。Webページを正常に読み取り、必要なデータをString
配列に保存しました。ListView
それをusingに割り当てたいのですArrayAdapter
が、データが に設定されていませんlistview
。エラーの解決を手伝ってください:
データが格納されていることを確認するための logcat の出力String array
11-07 23:03:47.640: I/NEW VAUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterflies
11-07 23:03:47.640: I/NEW VAUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfly
11-07 23:03:47.640: I/NEW VAUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfies
11-07 23:03:47.640: I/NEW VAUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfly
11-07 23:03:47.640: I/NEW VAUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterflies
11-07 23:03:47.640: I/VALUES(3192): Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterflies<br/>Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfly<br/>Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfies<br/>Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterfly<br/>Happiness is Like a Butterfly, You run after it, It keeps flying away. But if you stand still, It comes and Sits On You Wish you lots of Butterflies
コード
private Spinner spinner1;
private ProgressDialog pd;
private StringBuilder response;
private ListView listView;
private String[] values = new String[0];
private ArrayAdapter<String> adapter;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.mylist);
spinner1 = (Spinner) findViewById(R.id.spinnerCategory);
spinner1.setOnItemSelectedListener(new OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> av, View view, int id,
long ids) {
new sendMessageAsync().execute();
}
public void onNothingSelected(AdapterView<?> av) {
}
});
adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1, values);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
private class sendMessageAsync extends AsyncTask<Void, Void, String> {
@Override
protected void onPreExecute() {
pd = ProgressDialog.show(main.this, null, "Loading...",
true, true);
}
@Override
protected void onCancelled() {
Toast.makeText(getApplicationContext(),
"Message Sending Cancelled", Toast.LENGTH_LONG).show();
}
@Override
protected String doInBackground(Void... arg0) {
try {
doInBg();
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String result) {
pd.dismiss();
adapter.notifyDataSetChanged();
listView.setAdapter(adapter);
}
}
public void doInBg() {
try {
final String msgURL = "http://example.com/messages.php?category=" + String.valueOf(spinner1.getSelectedItem().toString().replace(" ", "%20"));
URLConnection connection = new URL(msgURL).openConnection();
connection.setRequestProperty("Accept-Charset", "UTF-8");
InputStream responseStream = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(responseStream));
response = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
response.append(line);
}
values = String.valueOf(response).split("<br/>");
for (int i = 0; i < values.length;i++) {
Log.i("NEW VAUES", values[i]);
}
Log.i("VALUES", String.valueOf(response));
} catch (Exception ex) {
ex.printStackTrace();
}
}