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

Clickable (that directs you to a website) text in Expandable list-view- Android Studio

How can i make a text clickable in Expandable list-view in Android studio. For example, when i click a text, it should open a webiste in my phone default browser. As you can see in the picture, under Afghanistan, there is Hope Academy Rwanda and…
Royal
  • 51
  • 5
2
votes
1 answer

Mousedown not working with vis timeline

I have a problem with mousedown event join to a vis timeline map... This is the structure of my code :
$("#firstDiv").mousedown(function (e) { console.log("mouseDown"); initialW =…
farso92
  • 41
  • 5
2
votes
3 answers

How do I make the margin of my div unclickable?

So I am currently learning how to use html and CSS and I decided to test myself with a very small project. When I finished I ran into a small problem that I don't know how to fix. Here is my html (Note: I am using jsfiddle.net so things like…
AstroSloth
  • 33
  • 1
  • 5
2
votes
1 answer

Android : Clickable link of sdcard storage

I want to display links which have format such as/sdcard/Pictures/ etc in textview as clickable link with highlight and underline. I often use Linkifyfor display links, however, this does not support storage links (only web, email etc). Is there any…
2
votes
2 answers

Three.js - TransformControls

I'm using the transformControls to translate, rotate and scale my objects. I want to be able to click on the different objects in my scene and transform them whenever I want: and it works ! The only problem is that geometries have their clickable…
sRcBh
  • 286
  • 1
  • 7
  • 24
2
votes
1 answer

Many svg's near with each other as clickable icons

I have many icons svg, I could use them as fonts if that is helpful and I would like to use ng-click(basically any kinda of click you know) the way that when i click on svg1 and svg2 wont be clicked. Till now i have tried allot of icons and many…
Honchar Denys
  • 1,408
  • 4
  • 29
  • 54
2
votes
0 answers

C++ Making form clickable when game

I want to make an app to see some values on game, I wrote some codes, but I need to click the form when the game is open. When I click to form, the game minimized, and returns me to desktop. How can I do that, I am new on this site, and I'm Turkish…
2
votes
1 answer

To make a particular part of my text clickable

I'm tring to make a particular part of my text clickable. Please see the below image for example: In this image "www.google.com" is placed inside an expandable listview. Can anyone please help me how I can make this text clickable so that it…
Parthiban M
  • 1,104
  • 1
  • 10
  • 30
2
votes
0 answers

ios8 UIButton inside UIScrollview not clickable

I have seen many post regarding this type of issue .I tried many solutions but none of them worked for me. I am going through a strange situation. I have created layout using storyboard. Storyboard contains UIScrollview. UIScrollview is having many…
vntstudy
  • 2,038
  • 20
  • 24
2
votes
1 answer

animateWithDuration and UIViewAnimationOptionsAllowUserInteraction

I'm making a simple app that involves a button moving across the screen and I would like for the user to be able to click it while it moves. I have this: func bonus () { UIView.animateWithDuration(14, delay: 0.1, …
Ben
  • 29
  • 5
2
votes
2 answers

How to make markers clickable and clusters not clickable?

i'm developing my app that use markers on google map. Then i use clustering to gather markers that are too closer. Here is part of my code: MapViewer.java public class MapViewer extends Activity implements OnInfoWindowClickListener { private…
smartmouse
  • 13,912
  • 34
  • 100
  • 166
2
votes
5 answers

What is the easiest way to create a clickable grid for a game in C++?

I haven't used C++ in a while, so I decided to take on a small project to become familiar with it again. I am trying to make a chinese checkers game, but I have no experience with GUI design in C++. Is there a real simple way to just make grid (i.e.…
user324667
  • 41
  • 1
  • 3
2
votes
1 answer

Error While clickng on TextView Hyperlinks

I want to show an Html formatted text in a list View. I used a TextView in the adapter. this is my code in the adapter…
Ahmad Behzadi
  • 1,006
  • 15
  • 30
2
votes
1 answer

Circular canvas corners clickable in Chrome

I have two canvases. I have made them circular using border-radius. The 2nd is positioned inside the first one (using absolute position). I have click events on both circles. If you click on inside canvas, the color at the point of the click is…
Sami
  • 8,168
  • 9
  • 66
  • 99
2
votes
0 answers

ListView item containing inner ListView not clickable

Good evening folks, so I'm developing an app which should assist swimming team trainers in taking times for their students. For that purpose I added an activity displaying a list of swimmers. Clicking once on a swimmer's row causes the stop clock to…