ListItem app = mAdapter.appForPosition(position);
// Create intent to start new activity
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClass(this, ProcessInfo.class);
intent.putExtra("processName", app.procInfo.processName);
intent.putExtra("packageList", app.procInfo.pkgList);
// start new activity to display extended information
startActivity(intent);