Tagged Questions
0
votes
0answers
54 views
android surfaceView onTouchListener
I want to add an OnTouchListener to my surfaceView but I can't quite get it.
I tried to add the OnTouchListener in the MainActivity with
surfaceView.setOnClickListener(this);
without result. Any ...
0
votes
1answer
174 views
Android - MyCustomView extends SurfaceView implements Runnable, OnTouchListener
In my code MyCustomView extends the SurfaceView to draw a bunch of bitmaps. I want them to move according to touches so MyCustomView also implements OnTouchListener. Everything works but I'm wondering ...
1
vote
0answers
138 views
how to drag and drop SurfaceView smoothly?
I have tried to drag and drop SurfaceView(camera preview) using SetOnTouchListener and MotionEvent.ACTION_MOVE but I am not getting the smoothness and even it is blinking like video preview is not ...
0
votes
0answers
310 views
Android: How can I use OnTouchListener to move the target with no delay?
I add the SurfaceView into the WindowManager
and set the OnTouchListener for that view.
I tried to move the view with my finger,
but it did not immediately respond to me.
i: view.
m: finger or ...
1
vote
1answer
169 views
Activity vs. View. vs. SurfaceView and interaction
I am trying to make a fairly simple Android game. I am making a custom view: I am not using any buttons, rather, I am painting pixels on screen that represent buttons. The idea is that I have 3 ...
0
votes
0answers
192 views
How to use setOnTouchListener in a CCLayer?
I'm making a game in cocos2d and want to get a joystick, I managed and implement classes and joystick controls, but the example I've seen acts on a class that extends SurfaceView, but I want to put ...
0
votes
2answers
200 views
Trying to start a new activity when the screen is touched
I'm trying to start a new activity when the screen is touched.The background is a resized bitmap. But the touch is not detected. Here's my code:
public class DispCover extends Activity implements ...
0
votes
0answers
474 views
How can I move my surfaceView and make it stay at the new position?
I have a surfaceview on which I draw a few rectangles, like a bar chart. When this chart grows it gets to big for the screen. Since I can't put it inside a Horizontal scrollview I have added a ...
5
votes
1answer
2k views
Layout with dynamic position
I have a layout which might be a bit unusual. The structure is the following:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
...