is it possible to make an imageview link to a web page such that when user taps on the image, it takes them to a web page?
another method we can even use is
image.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { Intent redirect2=new Intent(getApplicationContext(),RedirectAct.class); startActivity(redirect2); } });