How can ImageView link to web page?

后端 未结 3 988
我寻月下人不归
我寻月下人不归 2020-12-14 01:24

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?

3条回答
  •  执笔经年
    2020-12-14 01:48

    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);
    
        }
    });
    

提交回复
热议问题