// ---------- write in onCreate() Method --------------
ListView ls;
ls=(ListView)findViewById(ls.id.YOUR_LISTVIEW_ID);
ls.setOnItemClickListener(this);
// ----------------------------------------------------------------
@Override
public void onItemClick(AdapterView<?> adapter, View v, int position, long
viewId)
{
Intent i = new Intent(this,CLASSNAME.class);
startActivity(i);
}
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en