Tagged Questions
0
votes
0answers
24 views
Start Marquee Faster - OnTouchListener
I already made the textview marquee repeatedly when I touch it, but it takes like 3 seconds to start the marquee effect ! I want it to start right when I touch the textview !
Maybe I am using the ...
1
vote
0answers
87 views
Limit TextView boundaries to ImageView upon user touch
I have an imageview which only takes up a portion of the screen. And I have a textview on top of the imageview. When the user touches the textview, they can drag it to where ever they want on the ...
1
vote
1answer
940 views
How to change TextView background color when touching in and out of view?
This has to be a very simple fix, but I can't seem to figure it out. I have got my program to change the background color to change onClick, and onTouch with ACTION_DOWN and ACTION_UP. But I need it ...
2
votes
3answers
1k views
onTouchListener for multiple TextViews inside TableRow
Up till now I have searched for hours on end and have not found any suitable solution to my issue.
Am fiddling around with my android application and trying to make a Sudoku game.
The TableLayout ...
3
votes
1answer
314 views
Android onTouch event not occuring?
Hello and thank you for taking the time to read this. For several days now I have been researching and stuggling with my code to get a textview to update the score when a "ghost" is touched.
This is ...
1
vote
1answer
642 views
Scrollview and touch listener
I am facing a problem.
I have a ScrollView in my application and I have to drag and drop a TextView with the help of a touch listener.
The problem is when I drag a TextView using the ...
0
votes
1answer
409 views
Double Tapping on the textView
Eg.,
Welcome to Android World.
Now when I double tap on the space between "Welcome" and "to", the String from "to" to "World" should come in the next line.
That is,
Welcome <\n>
to Android ...
0
votes
1answer
1k 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 ...
1
vote
1answer
2k views
How can I use onTouchListeners on each word in a TextView?
I would like to assign onTouchListeners to each word in a TextView. (Not to link to something on the internet, but just to continue the game logic inside the app). The general action of my game at ...
0
votes
1answer
628 views
Android: onTouch for Spans in Spannable Text
I have a TextView containing Editable text. There are pictures in this text (drawables, I used Html.ImageGetter) for that I want to register onTouch events.
So, when the user touches the image, which ...
1
vote
0answers
146 views
Android TextView pinpointing closes character [duplicate]
Possible Duplicate:
Android: How to determine character index of a touch event's position in TextView?
I have an application that shows a textview occupying most of the screen. When ...
3
votes
2answers
2k views
Android: How to determine character index of a touch event's position in TextView?
I have a TextView with an OnTouchListener. What I want is the character index the user is pointing to when I get the MotionEvent. Is there any way to get to the underlying font metrics of the ...