Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Do we have mouse over event in android? I want to set text on a particular TextView on which my mouse is and dropped. Example: I want to drag a textview1 and drop it on another textview2 so I can set text of textview1 to textview2.

I had done the drag & drop examples but I can not found on which control my mouse is.

share|improve this question
Mouse??? in android??? Where did you get the cursor?? – Shashank Kadne Mar 15 '12 at 5:59
where is the mouse in the phone. – Chandra Sekhar Mar 15 '12 at 5:59
2  
@ChandraSekhar - we don't have mice in the phone. Only bugs. – Ted Hopp Mar 15 '12 at 6:02
i mean how can i get ACTION_OVER event in the android... i want to on which control i m moving or droping... mean i want to on which control(view) ACTION_UP event call...??????? @ShashankKadne. – S.K. Mar 15 '12 at 6:14

3 Answers

up vote 4 down vote accepted

You can find a demo example at this link :

   http://mobile-anarchy-widgets.googlecode.com/svn/trunk
share|improve this answer
i got wht i want........... thenx...... @ASH – S.K. Mar 15 '12 at 6:27
@user1173378 what did you want? We are all confused – cctan Mar 15 '12 at 6:35
i want to do copy the text from one textview to another.. by dragging one to another when i drop tv1(first textview which i drag) on the tv2(another textview on which i drop tv1). The text of tv1 should be copied to the tv2... actually i m making a drag & drop Spelling game.. – S.K. Mar 15 '12 at 6:42
1  
Have fun with your spelling game now. – ASH Mar 15 '12 at 7:23

There is no mouse in Android. You can detect and track touch gestures (including drag), but these are best thought of as (roughly) similar to mouse drags on a computer with a mouse. See the guide topic Drag and Drop for more info.

share|improve this answer
actually, there is mouse support both native, but also provided by third party apps such as Blueinput. – radhoo Nov 5 '12 at 13:44

Yes, you can have a mouse on Android, like that tablet that has a docking station+keyboard.

You need a OnGenericMotionListener ..

OnGenericMotion(...., MotionEvent me) {
   if (me.getToolType(0) == MotionEvent.TOOL_TYPE_MOUSE) {

   }

api14+ needed

[confirmed] Found me a tablet with usb mouse and can confirm this works for mouse movement. You WILL get flooded with messages, so simple operations or sleeping should be considered.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.