The onlongclicklistener tag has no wiki summary.
3
votes
2answers
530 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 ...
3
votes
2answers
2k views
Android touch listeners?
I need to nest s few touch listeners. For example I have a ViewGroup that will have the following listeners: onItemClick, onLongItemClick and onTouch.EV == move.
The items inside the view group will ...
2
votes
2answers
123 views
Is it possible to longClick on a WebView to return the position where I clicked?
I want to get the exact X and Y position where I longClicked in the window, but I found there's no method in OnLongClickListener to do this.
Is this possible?
Or I have to listen by JavaScript ...
2
votes
2answers
290 views
Android: Why does long click also trigger a normal click?
I have a ListView with listeners for a long click and a regular click.
Why, when I long press a list item, the regular click event gets called too?
I need to have two separate functions for the ...
2
votes
2answers
1k views
Calling delete method in custom content provider
I am learning Android and I am stuck on an issue involving calling a custom content provider. I have been using an example in an instructional book and although it describes how to create the custom ...
2
votes
2answers
735 views
OnLongClick with Text View & Edit Text
In Android can the OnLongClickListener be used with EditTexts and TextViews or just Buttons?
1
vote
1answer
35 views
onlongclick listner in android 2.0.3
In my java code i used onLongClickListener and opened 1 AlerDailogBox that shows delete or not!!but i want to show some options on my longclick and according to the choice i want to do further.i dont ...
1
vote
1answer
56 views
Android EndlessAdapter set OnLongClick to items
I'm using the EndlessAdapter to load a list of users from network and now I want to set the event onLongClick on each item of the list but I can't. I have set the onClick but if I implement the ...
1
vote
0answers
26 views
Add onlongclick listener to an alertdialog
I have an AlertDialog in android that contains a list of buddies from sqlite. When I click on the buddy name in the list, that buddy is called. What I want to do is add a longclicklistener to the list ...
1
vote
1answer
56 views
onLongPress and ACTION_MOVE
I made SimpleOnGestureListener capturing onLongPress with MotionEvent, but the problem is that I can't read event displacement, since I am getting always ACTION_DOWN code. How to achieve that? I ...
1
vote
1answer
92 views
Android 3.0 Gallery & Webview NullPointerException
I'm currently experimenting with the Android Gallery. Instead of imageViews I used webviews. These webviews are not clickable so the gallery can be swiped left or right. But on a longclick the ...
1
vote
2answers
101 views
How to remove an item from ListView
I am building one app having One list view showing the list of My favorites Fans. My list of Fans is this!
When i click on any item of this list then it show me complete profile of the concern Fan ...
1
vote
0answers
124 views
Implement Drag & Drop in Gingerbread
I need to know how i can implement Drag & Drop in Android for the Gingerbread version
as i know Gingerbread doesnt support that.
What i have coded:
a ViewGroup class to hold dynamic added childs, ...
1
vote
2answers
145 views
BaseAdapter and ContextMenu
Hello stackoverflow community,
Basically, i have gallery displaying some images using a gridView + imageView
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
1
vote
2answers
143 views
Android AdapterView Click Listener Parameters - position & id
I'm setting a long click listener on a listview and I want to use the index of the clicked item to retrieve the corresponding object.
Method signature and parameter definition according to android ...
1
vote
1answer
189 views
EditText onLongClick(); hiding cut/copy/selectall bar
when you long click an editText in andriod, a utility bar with options to cut/copy/select all/select word comes up. I am using an onLongClickListener to bring up an Dialog- and want to hide these ...
1
vote
1answer
185 views
LongClickListener on ListView
I have a ListView and want to get the long-click events on the ListView itself, not on the individual items in the ListView. I believe it should be as straight forward as just called ...
1
vote
2answers
316 views
How do I display a Dialog on Android app when I long click on an item in a GridView?
I am trying to display a Dialog when I long click on an item in my GridView. I have tried this but it is throwing errors. I don't really understand how to use OnItemLongClickListener and why it ...
1
vote
1answer
85 views
Android - How to listen for two simultaneous “long clicks”?
How might I listen for two simultaneous "long clicks" in my Android application? For example, is there a way to have some process start only after two buttons are "long-clicked"?
No need for a huge ...
1
vote
2answers
645 views
android I dont understand Long press detection in my subclass ImageView
hi
Im new to the Touchscreen programming please give me some help!
I have the:
public class PhotoEditDrawView extends ImageView {
and i have the:
@Override
public boolean ...
1
vote
0answers
481 views
onLongClick for plain text inside of a WebView
I am building an app that contains a WebView which will be used to show the user some links and some plain text. I want to make it so that the user can LongClick on a link, or a body of text and get ...
1
vote
2answers
901 views
Disable Long Click for Headers (or Footers) in a ListView
My question is similar to this one: ListView: disabling clicking/focus
However, I don't want to disable the default onClick, just the long click. I've registered my ListView for context menu ...
0
votes
0answers
20 views
Custom ArrayAdapter onLongClickListener
Hey Guys I have the following problem, I made a ListView with an Custom ArrayAdapter for it. now Iwant to define a onLongClickListener inside the ArrayAdapter, but I get the wrong Item everytime.
...
0
votes
1answer
64 views
How to change background color of edittext
i've some edittext and i'm checking the string inside it entered from users. when users clicks button at the end of dialog, if some edittexts aren't filled, i change background color of it and set a ...
0
votes
3answers
158 views
how to implement a long click listener on a listview
I want to add OnLongClick Listener on my list view.When ever the user long press the item in list some action should be performed.But my code does not catch this listener.Please let me know where I am ...
0
votes
2answers
228 views
setOnLongClickListener and setOnClickListener issue
I have a listview. What I would like to achieve is that when I longclick any item it will show a dialog menu. However I have a click listener as well. it gets triggered after long click. How Can I ...
0
votes
5answers
92 views
Android: How to convert 'view' to 'textview'?
I have a number of TextViews that each share a single OnLongClickListener
Within the onLongClick event, I want to identify which TextView triggered the event.
However, the event is defined as:
...
0
votes
2answers
144 views
Why does setAlpha() act on all my buttons whilst setImageResource() acts on just one button?
At the moment my buttons do not work. The first two times any are pressed all buttons are influenced rather than just the one that has been pressed.
Swap:
seatButton[i].setAlpha(255);
For:
...
0
votes
0answers
28 views
how to add items from one GalleryView to another dynamically?
I have two GalleryView widgets in my application. Gallery1 is always a part of the main UI and Gallery2 is defined in ViewStub which shows up only when any of the items on Gallery1 is long pressed. At ...
0
votes
1answer
83 views
ImageButton onlongpress causes onclick as well
i have an application with an imagebutton that has both an onclick and an onlongclick listener. However, when the button is long pressed, both of these listeners are executing. Any suggestions?
...
0
votes
1answer
332 views
Android fires both onclick and onlongclick on a short click
People thank you all for your thoughts. I feel quite ashamed right now, the problem was nog with the listeners, they send a message to a handler that uses a switch. One simple break statement was ...
0
votes
2answers
237 views
android implement both touch listner and long click listner on textview at the same time
I added both ontouchlistner and onlongclicklistner to a textview. But now everytime onlongclicklistner is invoking. Touch listner is not invoking. I want to invoke ontouchlistner on touch and ...
0
votes
1answer
121 views
How can I capture a long press on a Menu Item?
I have a typical menu and I'm wanting to set a onLongClickListener for one of the items. In other words, I want this item to perform it's normal onOptionsItemSelected function, as well as, a long ...
0
votes
2answers
213 views
onLongClickListener never get trigered
I have a custom listView defined like this
public class DDListView extends ListView implements OnScrollChangedListener {
than I make an instance of it with name mExampleList I set ...
0
votes
0answers
177 views
Android: how to create a ContextMenu with a onLongClick event of a custom View
I am looking for a way to use the onLongClick event that I have registered on my custom View for a ContextMenu.
The problem is, I have my one dragging and zooming routines implemented.
But I want ...
0
votes
0answers
88 views
Android custom view as ListView's rows bubu
it's kinda of a funky situation
I have a ListView, a row that is custom and it seems to me that adding the longClickListener doesn't do nothing no more:
listView.setOnItemLongClickListener(new ...
0
votes
0answers
26 views
OnLongerClickListener breaks after layout changes
I currently face a serious problem with the onLongerClickListener. For instance you have some View running and want to make a button visible/invisible on when a onLongerClick event is received by the ...
0
votes
1answer
417 views
Statically set onLongClick Listener
In xml layouts, one can set a onclick listener to any item using this syntax:
android:onClick="clicked"
implementing the function in the activity:
public void clicked(View v) {
...
}
This is ...
0
votes
3answers
190 views
Android listen for backbutton longclick
I am overriding the backbutton with a onBackPressed() function
how do I also detect long clicks on the backbutton? Is there an equivalent of @Override onBackLongPressed() ?
0
votes
1answer
396 views
ExpandableListView OnLongClick not recognized by listener
I have tried several different combinations (comments below are fragments of this). Debug doesn't recognize the click as ever happening. The item highlights, but nothing happens. I have tried ...
0
votes
2answers
1k views
ListView doesnt fire setOnLongClickListener, only setOnItemClickListener
I'd like to have both type of clicks on a listView - onClick and LongClick.
I've implemented it like this:
this.listViewSub = (ListView) this.findViewById(R.id.listsub);
...
0
votes
1answer
155 views
Is “dragging with longclick” impossible on Android?
I am working on charts. I can zoom in-out, dragging... Also I need longclick with dragging. if you need to explain, user can longClıck for see charts values, and user can dragging to left, right with ...
0
votes
1answer
177 views
Class file errors when using onLongClick with setText
Android beginner here. I created this little program to try and learn buttons and textviews. When attempting to use the onLongClick to setText, I get a force close. When I look at the debugger I see ...
0
votes
1answer
764 views
handle onlongclicklistener of menus
I need to handle the selected row in listview on long click on the row but because am using menus I can't override the onclicklistener. I am trying to do this:
listView.setOnLongClickListener(new ...
0
votes
0answers
93 views
Getting plain text (string) from longpressing and thus marking text in WebView
Getting plain text (string) from longpressing and thus marking text in WebView.
I would like to have the same functionality in my WebView as the WebKit browser in my HTC Desire.
I would like to be ...
0
votes
0answers
121 views
Help with setting wallpapers!
I'm working on a simpler background app. It has a horizontal scrollview at the top where all the images scroll. Then when clicked they view larger right below the scrollview. I set a ...
0
votes
1answer
460 views
OnTouch and OnLongPress work together
I impleme
public class TextViewer extends Activity implements OnTouchListener
and
tv.setOnLongClickListener(itemLongClickHandler);
tv.setOnTouchListener(this);
But I only the second one works.
...
0
votes
1answer
599 views
android onLongClickListener undesirable behavior
I'm using onLongClickListener and it's doing something unexpected. I've attached sample code for reference. I consumed the event so that no further action is taken. When the EditText is empty or you ...
0
votes
3answers
1k views
View with gesture listener and onLongClickListener
I'm trying to implement a view that has both a longClickListener and a gesture dectector. Basically, I need a button to show a view when the user long clicks on the first view, and then I want to ...
0
votes
2answers
771 views
Android: onLongClick ->longer time?
I'm trying to hide an administrator password window (to access system settings), so that users of my public access app wouldn't even know how to reach the password dialog.
I've figured hiding it under ...