Questions tagged [clickable]

The tag refers to a graphics user interface item, which can be clicked using the mouse or tapped (in case of touchscreen application).

702 questions
1
vote
2 answers

android studio: click on image instead of whole item

I have a RecyclerView in my app that shows a list of items, right now i can click on the whole item (image + detalis beside) and open it in a new activity. I'm trying to implement other case instead - I want only the image to be "clickable"and not…
Naor P
  • 13
  • 4
1
vote
2 answers

Create a Clickable Folder Link in Powershell

I have a script that searches for a file name in a folder and gives a folder path. Does Powershell have a way to make these folder paths a clickable link? I want to bring up a list of file directory paths that I can click on. Here is what the code…
PCTech
  • 19
  • 4
1
vote
1 answer

Overflowing anchor not clickable

I have some paragraphs inside a div and some of the words are wrapped in anchor tags. The paragraphs use white-space: nowrap, which causes them to overflow out of the div's boundaries (which is what I intend to do). Problem is, the overflow is…
Haelix
  • 13
  • 3
1
vote
3 answers

Why is CSS Selector not able to click on element after waiting for element to be clickable?

See the code below. You can ignore pretty much everything except for the last line, I think. from selenium import webdriver import os from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from…
Ross Leavitt
  • 119
  • 4
  • 13
1
vote
1 answer

Semi-transparent circle on top of map in SwiftUI

I am building an app in SwiftUI and am really running into a slight inconvenience. I am using MapKit to create a map where certain locations get a pin on them. I created a slider to zoom to a region within a certain radius. However for users it…
yourivdloo
  • 364
  • 2
  • 16
1
vote
3 answers

Flutter: How can I add onPressed commands when I use card widgets?

I want to direct people who touch the card to a different page. I can't use onPressed commands. For eg. when I tap the "to do card", i want to navigate different page. SizedBox( width:160.0, height:…
b s
  • 21
  • 6
1
vote
1 answer

Cocoa Drawing Clickable Text

I am trying to draw some text that is clickable. I am trying not to use NSButton as my text is being drawn in drawRect and using NSButton in a drawRect makes it add the subview on top of itself unless you go through and remove all subviews on each…
kdbdallas
  • 4,513
  • 10
  • 38
  • 53
1
vote
1 answer

Android setColorFilter doesn't update button

I have a button that is has: .setClickable(false); and .getBackground().setColorFilter(Color.GRAY, PorterDuff.Mode.MULTIPLY); upon initialization. I then wait for a GPS signal and when one is found, i set setClickable to true and the ColorFilter…
Kitteh
  • 211
  • 2
  • 10
1
vote
1 answer

How to make Mapbox Marker clickable and get their properties?

I have the main activity where i load all my markers from the database into a List and then i add them in my map. public void onMapReady(@NonNull final MapboxMap mapboxMap) { MainActivity.this.mapboxMap = mapboxMap; StringRequest…
imaluris
  • 23
  • 5
1
vote
4 answers

Possible to create a button with two clickable areas?

Is it possible to create a button in android with two clickable areas? If so how? Thanks for any help.
IZI_Shadow_IZI
  • 1,921
  • 4
  • 30
  • 59
1
vote
1 answer

Android: making overlay images clickable

I hope someone can help with this. I have created a map app that puts an icon on locations from an xml file, but I need to make the icons clickable to open a page of info about the location. At present I have this under the class GPSLocationListener…
Paul
  • 2,465
  • 8
  • 35
  • 60
1
vote
3 answers

How to create a checkbox as a clickable label?

How can I create in HTML a clickable label with textbox (clicking on label or texbox turns the checkbox on)?
1
vote
2 answers

Drawing a line Between Widgets and make the lines clickable

I'm referring to this issue right here: Drawing a line Between Widgets that have been already solved, but I have additional question about it. I want to make the lines in the Stack widget clickable, but with GestureDetector widget it is not…
1
vote
1 answer

Flutter Flat Button is clickable outside its visible border

Problem: I would like the user to not be able to tap a button if they click outside of its visible border. I created two FlatButton with no padding whatsoever inside them, the problem is that my button is still clickable even if I tap between the…
user13848261
1
vote
0 answers

How to make a card clickable to navigate to another screen in REACT NATIVE

here is the code to the card I need to make clickable as I need to navigate to a new screen and pass parameters to it upon clicking on the card: function ItemV({ title, url,verificationId,AttReq}) { //for verification items return ( …