I\'m making class like as below
// All necessary imports are here
public class More extends Activity {
String[] MoreItems = { \"Transfers\", \"Budgets\
Your "More" class has to extend ListActivity instead of Activity, then you can override onListItemClick
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
//do something here using the position in the arrya
}
Edit: Forgot to say, in your layout your ListView has to be called: android:id="@android:id/list"