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
1 answer

Android change hover color of card view which is clickable

I am trying to change color of my card view when someone click on it. So far I have tried using this code below: //drawable/selector.xml
Nilay Singh
  • 2,201
  • 6
  • 31
  • 61
1
vote
2 answers

How to make snackbar clickable?

As we know we can set action text to the snackbar.But I wanna make the whole snackbar clickable . For that I tried to make the view of snackbar clickable but it was futile. Can anyone please help me to solve this? Code: Snackbar…
Srinivas Nahak
  • 1,846
  • 4
  • 20
  • 45
1
vote
2 answers

Can't get my ListView items to be highlighted when they are selected

I have an app that hits a REST service, gets some json and then places it into a listview. My main activity extends Activity and not ListActivity. I can scroll through the list items, but I cannot select any (at least by touch). I get to the…
vikash dat
  • 1,494
  • 2
  • 19
  • 37
1
vote
0 answers

android textview links clickable using Html.fromHtml

I have textview in my app. I have a string which I set in the textview. The string is HTML string which has lots of html like images, bold and italics. I used code as follows: content.setText(Html.fromHtml(articledet.toString(), imgGetter,…
Umakant Patil
  • 2,227
  • 6
  • 32
  • 58
1
vote
1 answer

C# Xamarin Clickable LinearLayout

I want to make a clickable LinearLayout. I already set the Layout to Clickable and Focusable, but how can I write code in mainActivity.cs like: LinearLayout.ItemClick += LinearLayout_ItemClick; void LinearLayout_ItemClick(Object sender,…
user9198450
1
vote
1 answer

UITableView how to make clickable links

could anyone point me in the direction on how to do this please? i have made a twiter app which i would like to open links from the users timeline. i have sourced the code on how to open the link in my webvie but i do not know hot to make the links…
d4ndym1k3
  • 119
  • 2
  • 16
1
vote
3 answers

Android - clickable items from JSON

I know there are many similar questions and answers here, but nothing worked for my case. I created a simple JSON list using fragment - according to this tutorial…
Darksymphony
  • 2,155
  • 30
  • 54
1
vote
0 answers

Making a link clickable while scrolling

I have a bottom navigation menu and I would like the links to be clickable while one is scrolling the screen. I have noticed that you have to have the screen completely still atm, which can be annoying on a smartphone. Is that possible to…
1
vote
3 answers

How do I make a div clickable in html and css without underlining?

Goodday, I'm currently working on a page where I want to have a div clickable. Got this far:

Portal for projects

It works but the…
Unknown
  • 33
  • 5
1
vote
2 answers

How to make an (moving) ellipse clickable? Processing

So I started learning processing since a week ago and I'm trying to get a moving ellipse clickable. I followed the processing API, but I can't figure it out. I removed all the code relating to the clickable ellipse because it was a mess. In the…
Thomas Beumer
  • 89
  • 1
  • 14
1
vote
2 answers

jquery clickable row: how to find the value i need in ${this}

i'm stuck with a table, in which i would like every row to be clickable. Clicking on a row will start a function, using the value of the first cell of the row (i put it in a

) as a parameter, here is the table below. for (var…

Pierre
  • 219
  • 1
  • 4
  • 11
1
vote
2 answers

Creating a clickable progress bar

What I'm essentially building is a webkit based controller that communicates with a program called Ecoute.app. The controller has a progressbar that indicates the progress made through the currently playing song, but I want to make this bar's…
Cory
  • 25
  • 1
  • 4
1
vote
1 answer

Codename one - clickable bars in bar chart

I want to implement a bar chart that has clickable bars. To create a custom bar chart I created a class that extends BarChart. Class BarChart has a method that might be useful: clickableAreasForPoints(java.util.List points,…
MetalHead
  • 181
  • 1
  • 15
1
vote
1 answer

How do i make a clickable application with cropped icon?

Current status I have developed an applescript application with a monitor icon. Problem This monitor icon is transparent in the middle, and you can't click there. Question How do i make this clickable? Development Environment AppleScript…
RyosukeOK
  • 686
  • 1
  • 9
  • 22
1
vote
1 answer

Javascript clickables not working in Firefox

for some reason my code below works in Chrome and IE, but not in Firefox. Im using this to display clickable sections of an image, think Image map. The pre-determined boxes show in Firefox, but when I click on them the box does not select. In…