In touch based user interfaces a long-click (aka long-press and tap-and-hold) refers to pressing a control for a prolonged time in order to achieve additional functionality.
0
votes
3answers
43 views
how to disable longclick for listview in android
I want to disable the response to click and long click on items for a listview in android.
I have set isEnabled(int position) of the adapter to return false, so that the cells in the listview does not ...
5
votes
2answers
61 views
Disable long click in android webview
I am using css columns to display contents in android webview. I used longclicklistner {return true}; with this I was able to disable longclick in phones but it doesn't seem to work in tabs(eg galaxy ...
0
votes
0answers
56 views
Android - “hold to view” list item
I want to implement a mechanism like SnapChat's hold to view.
I have a ListView and when the user taps and holds an item, an overlay should appear with relevant information. When the user lifts their ...
1
vote
1answer
127 views
Receive a long press/click on a linear layout in android?
I'm painfully new to android and I've run into a wall.
I'm trying get a linear layout to function more like a button, with different actions for press and long press - The reason being so I can have ...
2
votes
2answers
66 views
Android: Long-Click text on button
In my android-app I'm trying to create a button with two lines of text. One will display what the button is doing when (short) clicked, the other one should show the effect when long-clicked and that ...
0
votes
4answers
90 views
setonlongclicklistener for several buttons at once
I want that button1,2,3 respond to a longclick, the user will be prompt to enter the text's button.
Inside of onCreate I wrote:
Button botonEditable;
Context context;
@Override
public void ...
1
vote
0answers
165 views
Android - Drag on LongClick with GridView - Unable to initiate drag
I'm developping a thumbnail mosaic of all pictures on SdCard.
If the user longclick on a picture, i want to start drag and drop process.
I clearly manage to get all images files and showing them with ...
1
vote
1answer
110 views
Android - Manage click and longclick in listview
I am currently coding a new android Application, and I need to use both OnItemClickListener and OnItemLongClickListener on a listview. Each listener launch a different actionmode on the actionbar.
The ...
0
votes
0answers
60 views
ignore small movements before starting drag
I have a widget where the user can both invoke a longclick and a drag. The problem is, if the user moves his finger even a tiny amount, the drag will start even if he intended a longclick. Now, I ...
0
votes
0answers
544 views
Change the long click functionality of the home button
I am looking for Android 'trick' to change the functionality of the long click on the home button.
Currently, long click on the home button open the task manager.
Instead, I want the long click to act ...
0
votes
1answer
463 views
Android - Why does onItemLongClick(…) return a boolean?
Coming from a Java background I am used to dealing with actions though I'm not really sure why the method requires a boolean is returned and don't fully understand the explanation given on the site: ...
0
votes
2answers
316 views
I can't get LongClick to work on ListActivity
I have already asked this, but didn't get an solution that works and I have since amedned the code.
Can anyone help me and advise why my Long Click function is not working please?:
public class ...
0
votes
1answer
92 views
How to set up LongClick in ListActivity to create AlertDialogue
I have stumbled trying to set up AlertDialogue following onLongClick in my ListActivity. As shown below, I have set up the onListItemClick to open an AlertDialogue without problem and it works fine, ...
5
votes
2answers
3k views
Android - Is It possible to disable the long click of home button to avoid the task manager?
I am looking for a way to disable the task manager window once I long press on the home button.
I managed to disable other device keys (such as volume, menu etc) and the normal click on the home ...
2
votes
3answers
822 views
clicklistener and longclicklistener on the same button?
i am creating a call/dial button, when i click on that call/dial button, a call will be made based on the input that is displayed in the edittext. I managed to do that part. can you guys advise me ...
5
votes
1answer
708 views
ActionbarSherlock: Long-click on action item show a Toast?
When an action item is long-clicked, a Toast without text is show below the action item.
Can I disable the Toast?
Thanks you.
1
vote
5answers
3k views
how to handle long click in Android
I am new to Android dev. The way I have been handling clicks has been by setting the android:onClick attribute in the manifest file for buttons. What I am wondering is the best way to handle long ...
1
vote
2answers
1k views
Android ActionBar options long click event
Android Can anyone know about Actionbar item options long click , I want to show text on LongClick on actionbar menu option like a hint on long press of actionBar long press
0
votes
2answers
369 views
Dynamically adding items to listview
I am making an android application that needs to use a ListView. Once a user presses a menubutton, it pops up a popupwindow containing a TextView, EditText and two Buttons, "Ok" and "Cancel". Once the ...
0
votes
1answer
195 views
How to create Shortcut-Context-Menu-Handler for Android
When clicking on a file in the filesystem in Android (long click) a popup menu appears, just like the Windows-right-click-menu. Is there any way to add a menu item, referencing my app?
For Windows it ...
4
votes
3answers
5k views
Detecting a long press with Android
I am currently using
onTouchEvent(MotionEvent event){
}
to detect when the user presses my glSurfaceView is there a way to detect when a long click is made. I'm guessing if I can't find much in the ...
0
votes
0answers
356 views
How to show EditText's context menu on long press when it's inside a gallery? [duplicate]
Possible Duplicate:
Android - EditTexts in Gallery show strange behaviour when being (long)-clicked
I feel like I should ask my previous question again more precisely and with less blabla.
...
0
votes
5answers
2k views
Android: using AlertDialog when an item from a listview is long pressed
I have a list of items, created by a listview. I would like to long press one of the items on the list and an alert dialog to open up and depending on yes or no key on that dialog box I wan to set a ...
12
votes
3answers
5k views
Long click on ListFragment
I'm working with a ListFragment and doing a onListItemClick. Everything works fine, but now I want to use a long Item Click (e.g setOnItemLongClickListener(new OnItemLongClickListener() for an ...
4
votes
2answers
2k views
Stop OnLongClickListener from firing while dragging
I have a custom View with bitmaps on it that the user can drag about.
I want to make it so when they long click one of them I can pop up a context menu with options such as reset position etc.
In ...
1
vote
3answers
5k views
How to get onTouchEvent, long click and context menu working together?
In our application we have a custom view (that extends ImageView) and in it we handle the touch events to record data. I wanted to add context menu functionality to this view and followed the ...
0
votes
1answer
527 views
Can I do onTap that doesn't require a longpress, but still have longpress enabled for other events?
Currently I have a series of markers on a google map. I want to be able to get the latitude and longitude from anywhere I longclick on the map and I want to open a message box dialog when I quick ...
3
votes
1answer
603 views
Android : How to listen to longclick events in any text area in other applications?
I'm trying to develop an Android application that provides an extra option when pasting data anywhere.
I know how to capture data from the clipboard. I just need to know how to listen to longclick ...
1
vote
1answer
869 views
Blackberry: detect long click on a ListField and display menu
How do you detect a long click on a ListField component?
Do you override its navigationClick(int status, int time) and fumble with its time argument (how?) or is there some builtin method for ...
0
votes
1answer
791 views
Show affordance/hover/tooltip on a long-clicked View
I would like to show a tooltip, i.e. additional non-essential information about a View when the user long-clicks on it.
The two options I see in front of me are using an OnLongClickListener to ...
1
vote
1answer
2k views
Android OnLongClickListener strange / unreliable behaviour
I'm currently fighting against the OnLongClickListener on Android Api Lvl 8.
Take this code:
this.webView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean ...
20
votes
4answers
11k views
Android: long click on the child views of a ExpandableListView?
ExpandableListView has a setOnChildClickListener method, but lacks of setOnChild*Long*ClickListener method.
When I added setOnLongClickListener() on child view in getChildView(), whole sublist became ...
1
vote
1answer
2k views
ListView Long Click Animation
I would like to capture long click events in a ListView, which was easily done using a OnItemLongClickListener. However, that lacks the fading animation of the selector transitioning to a long press ...
18
votes
8answers
20k views
android maps: How to Long Click a Map?
How do I long click on a mapview so that a place marker appears at that point on the map?
I tried a couple ways without success:
1) Using setOnLongClickListener on the MapvView which never ...
31
votes
3answers
23k views
How do you implement context menu in a ListActivity on Android?
How do you implement a context menu triggered by a long click or tap on a ListActivity that is using the built in layouts and a ListAdapter?


