本文介绍了使图像点击的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要这整个事情的一种新的,所以我需要一些帮助。我有一个创建一个ImageView的OnCreate中的应用程序。我想使这个图片点击运行并打开一个浏览器到一个特定的联系。

I'm kind of new to this whole thing so I need some help. I have an application that creates an ImageView OnCreate. I want to make this image clickable and have it open a browser to a specific link.

我将如何做到这一点?我无法特别是与setOnClickListener因为参数是不接受的OnClickListener。

How would I do this? I'm having trouble specifically with the setOnClickListener because the parameters are not accepting an OnClickListener.

我正在开发适用于Android 1.6

I'm developing for Android 1.6

推荐答案

您768,16设置ImageView的属性点击为真。然后设置监听器:

You shoud set ImageView property clickable to true. Then set listener:

mImageView.setOnClickListener(new View.OnClickListener() {

  @Override
  public void onClick(View view) {
    // do stuff
  }

});

这篇关于使图像点击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 03:05