Hi i have created a basic listview and added a textview and imageview in it.
this works:
ImageView myImg= (ImageView) findViewById(R.id.icon); myImg.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { Intent i = new Intent(YourCurrentActivity.this,YourNextActivity.class); startActivity(i); } });