|
|
|
แสดงแผนที่ บน android จากพิกัด google map ที่ดึงมาจาก mysql บนเว็บ |
|
|
|
|
|
|
|
สงสัยจะได้ทำบทความเกี่ยวกับ google map เพิ่มเติมล่ะ ตอนนี้ยังไม่มีครับ
|
|
|
|
|
Date :
2012-09-09 13:40:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำเลยครับรออยู่ อิอิ
|
|
|
|
|
Date :
2012-09-09 18:42:11 |
By :
feedblackho |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าว่ารบกวนเพิ่มการ search ในตัวอย่างนี้หน่อยนะครับ เพราะผมไปศึกษาที่
https://www.thaicreate.com/mobile/android-basic-php-mysql-json.html
พยายามแล้วยังเอามารวมกันไม่ได้กันไม่ได้อ่าครับ มือใหม่ลบกวนด้วยครับ
ผมต้องการ https://www.thaicreate.com/mobile/android-basic-php-mysql-json.html แบบ search ได้อ่าครับ
ขอบคุณครับ รบกวนด้วยครับ
|
|
|
|
|
Date :
2012-09-09 20:12:38 |
By :
feedblackho |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ส่วนนี้ยัง error อยู่ครับ
Code (JavaScript)
// Download JSON in Background
public class DownloadJSONFileAsync extends AsyncTask<String, Void, Void> {
protected void onPreExecute() {
super.onPreExecute();
showDialog(DIALOG_DOWNLOAD_JSON_PROGRESS);
}
// listView1
final ListView lisView1 = (ListView)findViewById(R.id.listView1);
// editText1
final EditText inputText = (EditText)findViewById(R.id.editText1);
@Override
protected Void doInBackground(String... params) {
// TODO Auto-generated method stub
String url = "http://www.creation2web.com/android/jsonGet.php";
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("txtKeyword", inputText.getText().toString()));
JSONArray data;
try {
data = new JSONArray(getJSONUrl(url,params));
final ArrayList<HashMap<String, String>> MyArrList = new ArrayList<HashMap<String, String>>();
HashMap<String, String> map;;
for(int i = 0; i < data.length(); i++){
JSONObject c = data.getJSONObject(i);
map = new HashMap<String, String>();
map.put("ImageID", (String)c.getString("place_id"));
map.put("ImageName", (String)c.getString("place_name"));
// Thumbnail Get ImageBitmap To Object
map.put("ImagePathThum", (String)c.getString("place_image"));
// Full (for View Popup)
map.put("ImagePathFull", (String)c.getString("place_image"));
map.put("Rating", (String)c.getString("point"));
MyArrList.add(map);
}
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
protected void onPostExecute(Void unused) {
ShowAllContent(); // When Finish Show Content
dismissDialog(DIALOG_DOWNLOAD_JSON_PROGRESS);
removeDialog(DIALOG_DOWNLOAD_JSON_PROGRESS);
}
}
|
|
|
|
|
Date :
2012-09-09 20:26:09 |
By :
feedblackho |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณสร้าง method ไม่ครบครับ
|
|
|
|
|
Date :
2012-09-09 20:29:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แค่คุณ Copy ไปมันก็รันได้แล้วครับ
|
|
|
|
|
Date :
2012-09-09 21:48:01 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมจะรู้ไหม๊ครับ คุณเขียนอะไรไปบ้าง
|
|
|
|
|
Date :
2012-09-10 10:55:17 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำได้แล้วครับๆๆๆ ขอบคุณ code ตัวอย่างจาก Thaicreate
|
|
|
|
|
Date :
2012-09-11 21:50:42 |
By :
feedblackho |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอามาแชร์ด้วยซิครับ
|
|
|
|
|
Date :
2012-09-12 08:23:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|