Membuat Listview Bertingkat | Tutorial Android - Hello friend Panduan SEO | Panduan SEO terlengkap tuk pemula yang ingin mulai belajar SEO. Panduan gratis ini meningkatkan pengunjung ke situs anda. On this article you read this time with the title
Membuat Listview Bertingkat | Tutorial Android
, We have prepared this article well for you to read and take the information in it. hopefully the contents of the post
Articles Tutorial Android, That we write this you can understand. okay, happy reading.
Title : Membuat Listview Bertingkat | Tutorial Android
links : Membuat Listview Bertingkat | Tutorial Android
3. RUN dan lihat hasilnya...
You are now reading the article Membuat Listview Bertingkat | Tutorial Android with the link address https://belajarpanduanseo.blogspot.com/2014/04/membuat-listview-bertingkat-tutorial.html
Title : Membuat Listview Bertingkat | Tutorial Android
links : Membuat Listview Bertingkat | Tutorial Android
Membuat Listview Bertingkat | Tutorial Android
Berikut adalah 'tutorial membuat listview bertingkat'. Adapun tahap-tahapnya sebagai berikut :
1. Langkah pertama, ikuti tutorial membuat Listview disini.
2. Selanjutnya setelah semua selesai ubah kode program pada 'MainActivity.java' pada projek seperti dibawah ini.
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import android.app.ListActivity;
public class MainActivity extendsListActivity {
String[] menuutama = new String[] {"Perhitungan", "Bangun Datar", "Keluar Aplikasi"};
String[] perhitungan = new String[] {"Tambah", "Kurang", "Kali", "Bagi"};
String[] bangundatar = new String[] {"Kubus", "Persegi Panjang"};
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, menuutama));
//setContentView(R.layout.activity_main);
}
protected voidonListItemClick(ListView l, View v, int position, long id) {
//Toast.makeText(this, "Membuka Form " + hewan[position], Toast.LENGTH_LONG).show();
super.onListItemClick(l, v, position, id);
Object o = this.getListAdapter().getItem(position);
String pilihan = o.toString();
if (pilihan.equals("Perhitungan")){
this.setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, perhitungan));
}else if (pilihan.equals("Bangun Datar")){
this.setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, bangundatar));
}else if (pilihan.equals("Keluar Aplikasi")){
this.finish();
}else{
tampilkanPilihan(pilihan);
}
}
private void tampilkanPilihan(String pilihan){
Toast.makeText(this, "Membuka Form " + pilihan, Toast.LENGTH_LONG).show();
}
}
============>
Thus the article Membuat Listview Bertingkat | Tutorial Android
That's an article
Membuat Listview Bertingkat | Tutorial Android
This article will be useful for you all. okay, see you in other article posting. Do not forget to keep visiting on Panduan SEO | Blogger, Tips , Adsense, Google.
You are now reading the article Membuat Listview Bertingkat | Tutorial Android with the link address https://belajarpanduanseo.blogspot.com/2014/04/membuat-listview-bertingkat-tutorial.html
EmoticonEmoticon