clickable Questions

16

Solved

I have learnt from this post that always use <a> tags or <button> tags to make button. Now I'm trying to use <a> tag. My question is: is there any way to increase the tag clickabl...
Tanny asked 18/6, 2012 at 7:27

40

Solved

I have the following TextView defined: <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/txtCredits" andr...
Labia asked 29/4, 2010 at 1:41

7

Solved

I have an SVG that uses :hover to change color. It only works when I hover over the solid part of the SVG, not the transparent part. I'm wondering how you could make the SVG interact with the mouse...
Furniture asked 15/3, 2014 at 1:11

14

Solved

I have this ListView that just needs to show data. So I don't want to make it clickable. First I've tried changing XML listview to: <ListView android:layout_width="match_parent" android:layo...
Lustihood asked 30/7, 2013 at 11:14

7

Solved

How do you create an HTML checkbox that is unclickable, but not greyed out? I used the disabled=disabled tag, but that makes it greyed out (in Chrome). Otherwise it works well. Working in jQuery an...
Schulte asked 20/6, 2011 at 13:12

3

Solved

I have a created a mapview with markers on it. Looking at this picture below: Grandparent is a filling View Parent is my MarkerView Child is a marker which is clickable Parent has clipChildren(fal...
Epiphora asked 7/5, 2018 at 11:27

4

Solved

I want to create a clickable histogram in shiny but I don't know if it is possible. Some months ago I saw a clickable volcano plot which gives you a table of what you click. Source: https://2-bitb...
Bunde asked 26/11, 2021 at 17:47

2

I have VSCode vs. 1.3. and I would like to be able to click in any valid path showed inside the integrated Terminal and get the file opened. Do you know how can I achieve it? Thanks!
Brooklet asked 19/7, 2016 at 12:30

2

Solved

I want to set the background android.R.attr.selectableItemBackground to a LinearLayout. When using XML there are no problems (it works) <LinearLayout android:id="@+id/llMiner" android:layout_...
Parisparish asked 4/1, 2012 at 19:18

2

Solved

I have a TextView with many ClickableSpan. On click on a ClickableSpan, I have to get the coordinate on screen of it (to show a custom View at his position). The problem is that I have no idea of...
Jumbala asked 10/8, 2012 at 16:12

10

I'm trying to disable multiple click events on listview, say after pressing first click some media gets played from webservice, while it gets played, other items need to be clickable==false , after...
Participle asked 19/4, 2013 at 7:9

2

Solved

Can you ctrl+click a URL in Windows Terminal to open the link in the default browser? I can't find the option anywhere; is there some package I need to install?
Pullen asked 14/6, 2020 at 17:28

4

Solved

i add an accordion menu to my site, using this example: <div class="bs-example"> <div class="panel-group" id="accordion"> <div class="panel panel-default"> <div class="pane...
Boo asked 29/7, 2015 at 7:43

3

Solved

I managed to get the rows in my table to be clickable and linked to the href attribute of the <a> element. However I started to have issues when I made the selector only select the rows excep...
Abominate asked 23/9, 2011 at 6:30

1

My naive approach is the following: function isClickable(id){ elem = document.getElementById(id); if (elem.nodeName.toLowerCase() == 'a' || typeof(elem.click) != 'undefined'){ return true; }...
Rattan asked 12/4, 2011 at 7:50

2

Solved

Here is the HTML script of my header: <div class="header"> <div class="logo"><a href="Default.aspx"><img src="style/images/logo.png" alt="" /></a></div> <di...
Steric asked 19/5, 2012 at 7:31

2

Solved

I want to make a part of a text tapable so I can call a function on it. Also I want to have control over the style of the tapable text. In the best case I can also increase the size of the ta...
Schug asked 28/9, 2019 at 10:55

5

Solved

I want to make all my list items in the listview open up into a new page, so each listview item opens up onto a new black page that I can use. I don't know how to implement this at all. I have sear...
Ehtelehud asked 8/11, 2012 at 1:37

6

Solved

When should we use android:clickable in XML? Should we ever? Is there any difference between such XML declaration and in-code declaration myButton.setOnClickListener? I have read the documentation,...
Wingspread asked 19/10, 2011 at 6:55

7

Solved

Until now, when I wanted to stop the user from pressing the button, I would set the button.setClickable(false); and usually change the text to some kind of grey colour (to let the user know that th...
Pourpoint asked 25/3, 2013 at 13:11

7

Solved

I have a ListView that I'm populating with values from my database. If the database is empty, I'm setting the first item of the ListView to "No data.". I want to disable clicking on this item. I've...
Wonacott asked 30/10, 2012 at 19:53

4

Solved

I've a tableView with some cells. Each cell also contains a button. When the user clicks the button, the cell should be unclickable, but not the button. So when the user clicks on the button of a c...
Veil asked 12/8, 2013 at 14:38

2

Solved

guys if i have such layout <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:l...
Avon asked 23/1, 2014 at 21:20

5

Solved

I want to display a link to help in a message box. By default the text is displayed as a non-selectable string.
Mariejeanne asked 2/12, 2009 at 15:46

1

When sending or receiving message in Telegram containing numbers, I noticed they automatically become links on the mobile client if they contain 5 or more digits. Also if there is a dot in between....
Teledu asked 17/5, 2018 at 11:3

© 2022 - 2024 — McMap. All rights reserved.