The tag refers to a graphics user interface item, which can be clicked using the mouse or tapped (in case of touchscreen application).
Questions tagged [clickable]
702 questions
10
votes
1 answer
Expand touch area of ClickableSpan
I have a TextView in which I set HTML text. This text has many links. When you tap a link, it does not always trigger the onClick method. So, I am trying to expand the area of ClickableSpan, so that it is always responsive.
int start =…

Odysseas
- 301
- 2
- 8
9
votes
6 answers
CSS Problem - Link (position:absolute) above a Box not work in IE + Opera
I have a link in the bottom of a div-box, which have position:absolute and should overlay the whole div-box.
like that:
http://jsfiddle.net/UpwvT/4/
In FF and Webkit it works fine, but in IE + Opera the "some text" is still not a link and not…

Jörg Steinhauer
- 137
- 2
- 10
9
votes
6 answers
How to make underlying div unclickable?
I made overlay div with:
position: absolute; top: 0; left: 0; widht: 100%; height: 100%;
Basically I want this overlay div to cover my whole page. And it does what I need, but I also need underlying divs to be unclickable. They are indeed…

Goran
- 1,807
- 7
- 27
- 41
9
votes
1 answer
making entire row of a wicket datatable clickable
Is it possible to make the entire row of a Wicket DataTable clickable ? if so, how ?
I've seen examples of how to make a cell clickable by extending the PropertyColumn class, which is fairly easy but can't find an easy solution for the entire row.

Anthony Richir
- 649
- 2
- 8
- 31
8
votes
4 answers
How to make items clickable in list view?
I have been trying to search for a solution, but with very little success.
I have to display a pop up window containing a list of items.
I was able to display the window but onitemclicklistener is not being called upon clicking an item in the list…

user1253887
- 1,309
- 3
- 11
- 13
8
votes
2 answers
Making more than one vector layer clickable in OpenLayers
I'm working on a OpenLayers map that will display multiple KML layers at once. I want to be able to click on a feature from any layer and have a pop-up show me some info. So far I can only click on the most recently added layer. If I want to click…

etherton
- 924
- 2
- 10
- 21
8
votes
3 answers
How to make the entire row in a table clickable as a link, except the last column?
I managed to get the rows in my table to be clickable and linked to the href attribute of the element. However I started to have issues when I made the selector only select the rows except the last column.
With the below code the clickable row…

Andrew
- 83
- 1
- 3
8
votes
2 answers
Android, gestures over clickable widgets
My application contains an area filled with buttons. I wish to implement the activity in such way, that fling gesture over the button area would switch it to one of two another areas (using ViewFlipper).
I've made two approaches on detecting…

Spook
- 25,318
- 18
- 90
- 167
8
votes
2 answers
How to make paths clickable in Visual Studio Code Terminal
I have VSCode vs. 1.3. and I would like to be able to click in any valid path showed inside the integrated Terminal and get the file opened.
Do you know how can I achieve it?
Thanks!

Nestor Rodriguez
- 151
- 5
8
votes
1 answer
TranslateAnimated ImageView not clickable after animation [Android]
I have 2 ImageViews that I translate from the top of the screen to the bottom. these views are infalted from xml and the animation is added from java code. The animation works perfectly, but the onClickListener I added in java code doesn't seem to…

Sephy
- 50,022
- 30
- 123
- 131
8
votes
1 answer
How to make an entire div clickable with CSS
Sometimes you want to make an entire div (or other element) into a clickable link. Here’s an example.
Here’s a cross-browser way to do it using pure CSS:
HTML:

Emil Morris
- 121
- 2
- 2
- 5
8
votes
2 answers
Clicking on label not checking checkbox if hidden when using IE 7 or 8
I am trying to create a custom designed checkbox using the label associated to a checkbox element and hiding (display:none) the checkbox.
This works fine in all browsers except IE, which requires the checkbox to be visible for the label to be…

Tom
- 12,776
- 48
- 145
- 240
8
votes
2 answers
Creating irregular shaped ImageButton with different click states
I created an ImageButton with a selector for pressed and non-pressed states, and this works fine.
But the button has an irregular shape and I only want it clickable where the underlying rectangular image is non-transparent.
So I implemented an…

user134926
- 291
- 3
- 9
7
votes
2 answers
How to make p:graphicImage clickable and invoke bean action
I am using like below:
…
Country Map

Basit
- 8,426
- 46
- 116
- 196
7
votes
1 answer
Android - Setting custom drawable background to ClickSpan
Is there a way we can set a custom drawable (from resources) to a span, especially a ClickSpan, of TextView?
Google returns many answers for disabling highlights or changing colors etc by overriding updateDrawState() of the span, but I do not see…

GreenBee
- 3,101
- 3
- 19
- 18