Wednesday, December 26, 2012

Android ListView OnClick Example


LISTVIEW ONCLICK
 
SOURCE CODE [main.xml] is 


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
                android:layout_width="fill_parent"
android:layout_height="fill_parent"
                xmlns:android="http://schemas.android.com/apk/res/android">
                <ListView android:id="@+id/listview"
android:layout_width="wrap_content"
                                android:layout_height="wrap_content" />
</LinearLayout>

SOURCE CODE [ListviewOnclickExample.java] is 

package com.ListViewExample;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class ListviewOnclickExample extends Activity
{
                private ListView lv;
                private String listview_array[] = { "ONE", "TWO", "THREE", "FOUR", "FIVE", "SIX",
                                                "SEVEN", "EIGHT", "NINE", "TEN" };

                public void onCreate(Bundle icicle)

{
super.onCreate(icicle);
setContentView(R.layout.main);
lv = (ListView) findViewById(R.id.listview);
lv.setAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, listview_array));
lv.setTextFilterEnabled(true);
lv.setOnItemClickListener(new OnItemClickListener()
{
public void onItemClick(AdapterView<?> arg0, View v, int position, long id)
{
AlertDialog.Builder adb = new AlertDialog.Builder(
ListviewOnclickExample.this);
adb.setTitle("ListView OnClick");
adb.setMessage("Selected Item is = "
+ lv.getItemAtPosition(position));
adb.setPositiveButton("Ok", null);
adb.show();                     
                                                }
                                });
                }
}


The OUTPUT will be

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhsrs54OWKfrHkZDRM4rB4C_Ekfn2bEQg6epT8fi9FKvtw9-c0c9zW24FzwMLAJ3Ny9LQGpfP9Bz-fazs-RWRTwa3BV6oEcTIWVeZiZwBhiYdepJKmzF8oQ6jlU2HUz0mb2l_Josm0DD0g/

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqnXG24OKMRREfucbehsp6NbanPVK8cTJQpUdUQoKZC9cnny6z-iDqU41Lhavbs2dloxUJDkJwJ0EisfVdK86HAr5U4mLuU-r7H64l6QEMEuQ7llD0IHgzwjv4cJPXWiaffVdBsiB81Mw/

No comments:

Post a Comment