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
3
votes
3 answers
How can I make the rectangles clickable, C#
The code can generate rectangles (Rectangle rectangle) at runtime. The position of rectangles may change according to users' choices.
I want to add code in the method where it creates rectangles to make the rectangles clickable. And after user…

Axess
- 101
- 2
- 10
3
votes
3 answers
Non-clickable Listview Item with Visible Divider
I would like to disable clicking of a Listview item. One solution is to override areAllItemsEnabled() to always return false, and isEnabled() to return false for a particular position. However, this causes the divider lines around the particular…

benkdev
- 673
- 2
- 16
- 32
3
votes
1 answer
Make clicking MATLAB plot markers plot subgraph
In Matlab 2011b, I have a multidimensional matrix which is to be initially presented as a 2D plot of 2 of its dimensions. I wish to make the markers clickable with the left mouse button. Clicking on a marker draws a new figure of other dimensions…

Gnubie
- 2,587
- 4
- 25
- 38
2
votes
3 answers
ListView Dividers and Non-Clickable Items
All,
I would like to show a divider in a list and want to make the item not clickable but not look grayed out. I tried setting my xml layout to not clickable and not enabled when i inflated it but it did not work. below is my code.
private static…

ControlAltDelete
- 3,576
- 5
- 32
- 50
2
votes
2 answers
2
votes
1 answer
Make Spheres on a Canvas3D 'clickable'
I've got a Canvas3D which holds a couple Spheres. Is there a way to detect when the user clicks on a sphere?

äymm
- 411
- 4
- 14
2
votes
5 answers
How to make background images clickable (javascript or css)
Please take a look this fiddle
How to make the background image clickable? When click "Take the survey" will go to a new page.
user503853
2
votes
2 answers
Example for clickable TableRow in Android
I have a table of texts with each row having a text. I want to display a popup when one of the rows in the table is clicked. Does TableLayout in android support this? If so, is there an example?

ssk
- 9,045
- 26
- 96
- 169
2
votes
1 answer
SwiftUI problems: Decreasing the clickable area of buttons inside the scrollview if the view is adjacent to the list
I have a scrollable panel with buttons above the list. And in this layout the lower part of buttons is unclicable.
import SwiftUI
struct TestListScreen: View {
var body: some View {
NavigationView {
…

Tatiana
- 21
- 7
2
votes
4 answers
Python Selenium: send keys to tag 'input type="hidden" '
I try to log in to this web page with my credentials.
https://www.oddsportal.com/login
I am able to get the "username" and "password" input boxes but I am not able to send the data.
Selenium locates the elements (via "id" or otherwise), but gives…

daniel2014
- 649
- 1
- 6
- 10
2
votes
1 answer
How can I make a swipeable composable only consume clicks and drags directly on content?
Background
I have built a custom bottom sheet with three anchors.
There is a FAB for transitioning from BottomSheetState.Gone to
BottomSheetState.Half.
This bottom sheet's content either doesn't
cover, half covers, or fully covers a full screen…

Lucas
- 323
- 1
- 8
2
votes
2 answers
JetBrains IDE make link clickable in .txt files
I am opening a .txt file with my PyCharm IDE that contains multiple links among several other lines of text (actually these are logs from a continuously running script).
Like so:
----------------------- session start, Tuesday 12.10.2021,…

Simon Mayrshofer
- 1,264
- 1
- 11
- 18
2
votes
1 answer
Flutter Draggable widget that can be clicked or dragged to move to DragTarget
I am trying to create a small test that allows a user to click or drag a Draggable or Container to move it to a DragTarget. The best example I can think of for this would be how Duolingo allows for their users to click a word and automatically move…

aczich
- 140
- 11
2
votes
3 answers
Selenium webelement clickable or not JAVA
So there is not a isClickable() function in selenium. There is however an isEnabled() that works most of the time (in combination with isDisplayed()), but not always.
I find myself in such a situation. I have an btn (found by css selector) that is…

thomarkey
- 129
- 1
- 13
2
votes
1 answer
Can I make the navbar title into its own clickable page in shiny?
My apologies if this already exists, but the only post that appears to ask this that I could find is this one: Clickable Navbar title and it seems to be somehow iPhone related...
I am building a shinyApp using the navbar layout. It basically follows…

Pia
- 77
- 7