there is one menu in my application, you can only open it with an Internet connection, I will try to put some source code, but it doesnβt work ... can someone help me ..? this is my source code:
public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); String[] listpeta = new String[] { "TMII","Anjungan", "Museum", "Tempat Ibadah","Taman","Wahana Rekreasi"}; //Menset nilai array ke dalam list adapater sehingga data pada array akan dimunculkan dalam list this.setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, listpeta)); } @Override protected void onListItemClick(ListView l, View v, int position, long id) { super.onListItemClick(l, v, position, id); //Menangkap nilai text yang dklik Object o = this.getListAdapter().getItem(position); final String keyword = o.toString(); //Menampilkan list peta. final ProgressDialog myProgressDialog = ProgressDialog.show(ListPeta.this, "Loading", "Mohon Tunggu...!!!", true); new Thread() { public void run() { try{ Thread.sleep(1000); if(keyword=="TMII"){petapa="tmii";} else if(keyword=="Anjungan"){petapa="anjungan";} else if(keyword=="Museum"){petapa="museum";} else if(keyword=="Tempat Ibadah"){petapa="tempatibadah";} else if(keyword=="Taman"){petapa="taman";} else if(keyword=="Wahana Rekreasi"){petapa="rekreasi";} Intent slide2 = new Intent(ListPeta.this, FormPetaTmiiOnline.class); startActivity(slide2); } catch (Exception e) { } // Dismiss the Dialog myProgressDialog.dismiss(); } }.start(); }
if someone helps me and gives me the source code .. tell me where I should put it in my source code ... :)
source share