MYSQL データベースからデータを返し、結果をリストビューに表示するアプリケーションを開発しています。これは、名前、住所、および番号で構成されます。リストビュー内のアイテムが選択されたときに、クリックしたアイテム リストの詳細を表示する別のページを開きたい。どうすればよいでしょうか?onListItemClick メソッドを使用する必要があることはわかっていますが、クリックしたリスト内のアイテムからの情報をロードするページ テンプレートを作成するにはどうすればよいでしょうか? ありがとう
データベースに接続してクエリを実行し、結果をリストビューに表示するために使用するコードは次のとおりです。
public class HttpExample extends ListActivity {
TextView httpStuff;
ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
// setContentView(R.layout.httpex);
setContentView(R.layout.listplaceholder);
httpStuff = (TextView) findViewById(R.id.tvHttp);
GetMethodEx test = new GetMethodEx();
String returned;
try {
returned = test.getInternetData();
httpStuff.setText(returned);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
ListAdapter adapter = new SimpleAdapter(this, mylist, R.layout.main,
new String[] { "name", "address", "number" }, new int[] {
R.id.item_title, R.id.item_subtitle, R.id.item_number });
setListAdapter(adapter);
}
public class GetMethodEx {
public String getInternetData() throws Exception {
BufferedReader in = null;
String data = "";
String returnString = "";
// httpGet
try {
HttpClient client = new DefaultHttpClient();
URI website = new URI("http://192.168.0.10/connect.php");
HttpGet request = new HttpGet();
request.setURI(website);
HttpResponse response = client.execute(request);
in = new BufferedReader(new InputStreamReader(response
.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String l = "";
String nl = System.getProperty("line.separator");
while ((l = in.readLine()) != null) {
sb.append(l + nl);
}
in.close();
data = sb.toString();
// return data;
} catch (Exception e) {
Log.e("log_tag", "Error converting result " + e.toString());
}
// parse json data
try {
JSONArray jArray = new JSONArray(data);
for (int i = 0; i < jArray.length(); i++) {
HashMap<String, String> map = new HashMap<String, String>();
JSONObject json_data = jArray.getJSONObject(i);
map.put("id", String.valueOf(i));
map.put("name",
"ShopName:" + json_data.getString("shopname"));
map.put("address",
"Address: " + json_data.getString("address"));
map.put("number", "Number: " + json_data.getInt("number"));
mylist.add(map);
}
} catch (JSONException e) {
Log.e("log_tag", "Error parsing data " + e.toString());
}
return returnString;
}
}
}