Questions tagged [clickable-image]
46 questions
21
votes
5 answers
Creating a clickable image in WPF
I want to make a user control that shows an image and can invoke a command when clicked.
Later I want to bind a list of these controls to a list of products.

mico
- 1,816
- 1
- 18
- 27
17
votes
5 answers
Clickable image - android
How do i make a image clickable? I have tried some ways, but without success.
Here's the last code i tried (it's clickable but gets error):
ImageView btnNew = (ImageView) findViewById(R.id.newbutton);
btnNew.setOnClickListener(new…

user484146
- 301
- 1
- 7
- 14
11
votes
3 answers
Create a clickable image in a GridView in Android
I have images displayed in a GridView as in this tutorial. I want to be able to click on a single image and do other events and I need to know what image was clicked.
Do I have to add imageView.onKeyDown(keyCode, event) in the ImageAdapter class? …

Tai Squared
- 12,273
- 24
- 72
- 82
3
votes
2 answers
make image clickable in google spreadsheet
I try to make clickable an imported image into Google spreadsheet.
When I click it to take me to another website.
I was able to:
- insert the image
- to 'Assign script' to it
- that looks like this:
function showMessageBox() {
Browser.msgBox('You…

user3533434
- 31
- 1
- 1
- 3
2
votes
3 answers
UIButton: Need a circle hit area
Ok I have 6 custom UIButtons. Their normal state image are all circles images.
They are all spaced out equally but all the circles touch each other.
The problem with the custom UIbutton (which has a circle image on it), is that the hit area of that…

Pavan
- 17,840
- 8
- 59
- 100
2
votes
2 answers
How do you add a link inside an SVG image file?
I'm having trouble trying to place a clickable link within my SVG image. I've read a few articles but I still cannot seem to get the hang of it, I would greatly appreciate if anyone could guide me on what I may be doing wrong & how I can resolve the…

Damani
- 23
- 1
- 3
2
votes
3 answers
Clickable Images in HorizontalScrollView
I am creating gallery using HorizontalScrollView, and I want to click the image in HorizontalScrollView.
Here is my code:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
…

Annisha
- 65
- 9
2
votes
2 answers
Clickable Images for Python
I'm an entry level python coder looking to create a Guess Who styled game. At university, I've yet to learn how to import images and bind them to fixed places on a screen (resembling the game board). Is there any way to click on a specific image and…

zSynonym
- 31
- 1
- 1
- 4
2
votes
5 answers
What is the easiest way to create a clickable grid for a game in C++?
I haven't used C++ in a while, so I decided to take on a small project to become familiar with it again. I am trying to make a chinese checkers game, but I have no experience with GUI design in C++. Is there a real simple way to just make grid (i.e.…

user324667
- 41
- 1
- 3
1
vote
0 answers
how to use imagemapping with clickable areas in android?
how to use imagemapping with clickable areas in android?
I want to render image for my android application and I added two images to the scrollview in my design class. I created different clickable areas in the mask image that is invisibile, and…

Evin Melek
- 13
- 3
1
vote
2 answers
How to make an image clickable
Hello,
I would like to make 2 of my images clickable:
The one in my header (Kurium Header Logo)
And the one in my footer (Kurium Footer Logo)
Here is my code:
HTML : https://bin.readthedocs.fr/ttilty.txt
CSS :…
user13925890
1
vote
1 answer
How to achieve Clickable on each image inside the viewpager in Android studio?
I am new to Android studio and I been learning viewpager to create a image slider.
My image slider has 4 image in each slide. I had tried view.setOnclick in the adapter but it only setting the click on the entire the slide (not on each image). I…

Kumaravel A
- 57
- 8
1
vote
2 answers
How to make clickable gif and make it link to somewhere?
So I have an ambitious idea on something I want to do specifically and want to know the best way to carry it out or if it's even possible.
I want it so when I hover over one of the tabs it plays a gif animation (like some arrow or something) once…

Chris.Le
- 15
- 1
- 2
- 6
1
vote
1 answer
Three js clickable Img in Scene
i have a 360 degree scene where i place some imgs (sprits) on. I'd like to make this imgs clickable, so that I receive a function if i click on it.
My Code:
var map = new THREE.TextureLoader().load( "arrow-poi.png" );
var material = new…

Thom.as
- 29
- 4
1
vote
0 answers
Create interactive engineering part drawing accessed via web page
I am trying to make a seamless process for creating engineering part drawings that have interactive balloons that will somehow go to the part you clicked. A part balloon contains a part number, I want the user to be able to click that part number to…

CommonKnowledge
- 769
- 1
- 10
- 35