Tagged Questions

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.

learn more… | top users | synonyms

21
votes
3answers
15k 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?
9
votes
5answers
10k 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 ...
3
votes
2answers
472 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 ...
2
votes
3answers
461 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 ...
0
votes
2answers
148 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
304 views

How to show EditText's context menu on long press when it's inside a gallery? [closed]

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
219 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 ...
0
votes
3answers
2k 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
222 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 ...
0
votes
1answer
164 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 ...
0
votes
1answer
403 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
361 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 ...
0
votes
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 ...