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
2
votes
1 answer
Table Cell Link in Mediawiki Markup
I'd like to make the entire cell in a MediaWiki table clickable, and not just the text inside it. I start off with this, for example:
{|…

dojo
- 23
- 5
2
votes
2 answers
Love2d - How to make text clickable
I have a simple text and I want it to quit when I click the text. sorry new to love2d
quit = love.graphics.print( "Quit", 450,375)
function love.mousepressed(quit)
love.event.quit()
end

Ross
- 303
- 1
- 4
- 19
2
votes
1 answer
Make a program come to foreground but not clickable
I'm pretty new to programming and I wanted to create a new project.
I have something in mind, but before I start learning how to program it, I need to know something.
I want the program to be able to stay on the foreground, so it always visible when…

user3219808
- 25
- 4
2
votes
1 answer
How to create clickable Textview in Android notification?
I'm trying to create a clickable TextView in a notification.
I've created a layout with some TextViews and I use a remoteView to build the notification layout.
In the notification build method I use setOnClickPendingIntent() to assign a Pending…

SagiLow
- 5,721
- 9
- 60
- 115
2
votes
2 answers
Button inside ListView not clickable
I want to be able to click on a button inside an item of a ListView. It should have a different effect from clicking the whole item. I realize there are several questions asked on stackoverflow, but none of the suggestions works for me.
The ListView…

Uli
- 339
- 5
- 19
2
votes
1 answer
How to wait for an element NOT to be clickable using Selenium Webdriver?
I have to write a test to verify if an element is NOT clickable under certain circumstances. I'm using the Selenium Webdriver Java library.
I know how to do the opposite thing by utilizing the WebDriverWait and ExpectedConditions classes.
new…

toniedzwiedz
- 17,895
- 9
- 86
- 131
2
votes
1 answer
Create words starting with sign '@' Clickable in ios
I have a table view in which each row contains various information like name, picture, message etc.
This message may contain some words starting with '@' or '#'. I want to make these words clickable and on click i want to open another view…

Udit Agarwal
- 868
- 9
- 22
2
votes
2 answers
Android Animation - Button stays clickable
I am making a game in which I have 5 buttons, looking like clouds, falling from the "sky".
That means that when my activity starts, 'clouds' cannot be seen, since the marginTop is set to -100dp.
From that position they start falling down untill they…

SteBra
- 4,188
- 6
- 37
- 68
2
votes
1 answer
Make bootstrap typeahead autocomplete clickable
I am using Bootstrap Typeahead which I got it from GitHub 1891669. It brings up the suggested words but would like to fix two issues:
The example is here
When I click on the item it just prints 0 in text field. What do I do so it prints the full…

RightAngle
- 91
- 8
2
votes
1 answer
How can a function know which clickable textView has called it with onClick?
When I choose to call a function with onClick on a clickable TextView, how do I get the function to know which TextView has called it?
For example, when I have this in my MainActivity.java:
public void showHideData(View view)
{
…

Jean-Paul Bardou
- 107
- 2
- 11
2
votes
2 answers
android span click event
Ok. These are my problems.
I need to user regular expressions to filet out everything except for letters and then I need to encase the found words within a $word tag.
With this str = str.replaceAll(pattern, "$0");.
right now I am filtering all of…

TheMan68
- 1,429
- 6
- 26
- 48
2
votes
3 answers
Actionbarsherlock custom layout clickable imageview
I am trying to make my imageview that is defined in my custom layout for Actionbarsherlock clickable. My activity first sets a layout:
setContentView(R.layout.myLayout);
The actionbar_layout is set in the same activity like this:
View cView =…

Jelle
- 43
- 5
2
votes
1 answer
Implementing a clickable map for an arbitrary image
I have a C# WPF application where I have several possible images, some having irregular shapes within the image. I would like to generate different events when clicking on the different shapes within the image.
For example: If the image was of the…

John D
- 201
- 2
- 9
2
votes
0 answers
Java - Certain Regions of Components only clickable?
So my problem is is that only certain regions of some components are clickable. I have these 3 classes:
TDUsersPanel -- https://github.com/cats-/TD/blob/master/src/cats/td/gui/game/TDUsersPanel.java
TDSavedUsersPanel --…

Josh M
- 11,611
- 7
- 39
- 49
2
votes
1 answer
Gridview Clickable Rows for Message Inbox
I know there's a few other questions like this but I couldn't figure it out based on their answers.
I'm building a messaging inbox page using gridview. Currently, the gridview shows a user their messages with the column headers being: Sent from,…

Kevin
- 3,209
- 9
- 39
- 53