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
7
votes
2 answers
Making a JButton invisible, but clickable?
How do I make a JButton in java, invisible, but clickable?
button.setVisible(false);
makes the button invisible, but unclickable, is there any method that makes it invisible, but clickable?
I tried…

Stan
- 3,659
- 14
- 35
- 42
7
votes
3 answers
Children not clickable outside parent view
I have a created a mapview with markers on it.
Looking at this picture below:
Grandparent is a filling View
Parent is my MarkerView
Child is a marker which is clickable
Parent has clipChildren(false) and thus the children are visible.
My problem is…

HansElsen
- 1,639
- 5
- 27
- 47
7
votes
1 answer
Trying to create link with NSTextField
I'm using this category (is that right?) http://www.nightproductions.net/references/dsclickableurltextfield_reference.html#setAttributedStringValue
to implement clickable textfields. I've imported the header file in my controller class and set it's…

Chris
- 988
- 3
- 18
- 30
7
votes
2 answers
Android: View.setClickable consumes click event
I have a custom Gallery view for horizontal scrolling and several child views that all should be clickable.
Setting childview.setOnClickListener() doesn't work since it always consumes the touch event.
Therefore, I used…

Christopher Masser
- 809
- 13
- 25
6
votes
6 answers
android button not clickable while playing animations
I have a button and while this button is playing an animation, I'm not able to click on button. I've set click listener and touch listener but in debug mode it's not entering in OnClick and in onTouch methods. Do you know why? Thanks
edit: I've…

Buda Gavril
- 21,409
- 40
- 127
- 196
6
votes
3 answers
How can I bind click event to custom overlay with Google maps v3 both in IE and Firefox
I've already subclass my overlay object under the instruction of google document, and my onAdd() function is listed below:
MyOverlay.onAdd() {
var div_parent = document.createElement("DIV");
var div_child = document.createElement("DIV");
…

WANG Longlong
- 61
- 1
- 4
6
votes
2 answers
Windows Terminal clickable urls?
Can you ctrl+click a URL in Windows Terminal to open the link in the default browser? I can't find the option anywhere; is there some package I need to install?

Ricardo Nuno
- 89
- 1
- 8
6
votes
3 answers
ListView with multiple buttons, list item can't be clicked
I have a list with two buttons in it. When I want to click a list item it doesn't work, but my button is still clickable.
How I can make all buttons include the entire list item to be clickable?
List item:

BolbazarMarme
- 1,221
- 2
- 13
- 25
6
votes
1 answer
anchor inside a clickable div
I have this problem with a click script I have connected to a div.
The thing I'm trying to accomplish is that when you click on an URL inside the clickable div, the click event wont be called, and you will be directed to whatever the anchor is…

Andreas
- 117
- 1
- 2
- 8
6
votes
2 answers
Android. How do I set all buttons clickable or unclickable at same time using setClickable?
The screen displays four buttons. When a button is pressed, a media player plays a sound. The problem I'm having is implementing setClickable for all buttons at the same time.
Once a button is clicked, I want all buttons to be unclickable until the…

John
- 109
- 1
- 2
- 5
6
votes
2 answers
jquery clickable table row, except td with specific class name
I have a table like this
some cell
some cell
some cell
special cell
…

fredmarks
- 327
- 5
- 14
6
votes
1 answer
How to set the four parameters of View.layout(l, t, r, b)
I am facing the same problem in this question, but I have difficulty in understanding the exact meaning of the four position parameters in layout(int l, int t, int r, int b). I know they represent left, top, right and bottom respectively relative to…

Neoh
- 15,906
- 14
- 66
- 78
5
votes
2 answers
Run command in emacs, get output in clickable buffer
I would like to run a shell command and get its output in clickable buffer in emacs. The command is a shell script that eventually runs glimpse on bunch of source files. Its output looks like grep's output. It includes file name and line number. I…

Alexander Sandler
- 2,078
- 2
- 19
- 21
5
votes
2 answers
Android ExpandableListView long group click listener prevent expand
I use a ExpandableListView in my Android application an want to perfrom an action if the user clicks long on the group element, so I defined a OnLongClickListener in my BaseExpandableListAdapter extention. The listener works as aspected but the…

CannyDuck
- 359
- 9
- 17
5
votes
2 answers
Facebook share 'clickable' url-link issue
I have a problem with clickable url-link in Facebook.
As you can see nr 1. is not clickable but nr 2 and 3 are.
Sometimes it is clickable and other times not. (randomize)
What I want is that all the share links are not 'clickable' like nr 1.
How…

Orangegroup
- 59
- 2