-2
votes
1answer
88 views

Change background of view inside LinearLayout

I have LinearLayout in which I add view dynamically. I need to change background of each view when I click on it. I try to do this in my code: public class UserDetailActivity extends Activity ...
0
votes
1answer
153 views

Android drawing app OnTouchListener cannot be implemented

I am working on a drawing app and extending View, and would like to implements OnTouchListener. Codes as follows: public class DoodleView extends View implements OnTouchListener //ERROR1 { ...
1
vote
1answer
216 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
1answer
161 views

how to Apply the Click event on extends view class in android?

Hi i want create simple apps.i use the one customclass which name like a Drawcanvas which purpose to draw runtime canvas.so i use the ontouchListener and OnClicklistener onthis. but those event can`t ...
1
vote
2answers
914 views

Android: How to Stop Calling View.OnTouchListener ACTION_MOVE

I have a simple slide action for LinearLayout View using TouchListener. The problem is MotionEvent.ACTION_MOVE keeps being called when I touch and move. How can I stop MotionEvent.ACTION_MOVEfrom ...
1
vote
2answers
344 views

Android onClick only works once

So I'm realy confused I am having a View(R.layout.main) which includes a custom view (canvas) this View contains a button which is overlayed over the canvas but when I click the button the ...
3
votes
1answer
397 views

GestureOverlayView not working

I am kind of puzzeld right now : I created 4 gestures using the Gesturebuilder 1 Gesture is a swipe pointing up 2 Gesture is a swipe pointing down 3 Gesture is a swipe pointing left 4 Gesture is a ...
1
vote
1answer
197 views

Adjust sensitivity of setOnTouchListner in Android

Is there anyway I can adjust the sensativity of the setOnTouchListner . Currently it is typing multiple values on each touch..Thanks!
1
vote
0answers
140 views

OnTouchListener receives oscilating touch points

I have an activity where i set an OnTouchListener to a View (see code below). It should translate the View horizontally a bit until the GestureDetector kicks in and does something. The code so far is ...
-4
votes
1answer
1k views

Android - How to detect a single tap on a LinearLayout?

I have a View and I need to detect a single tap on a LinearLayout. I don't care about movements, All I want to detect is a single tap. Basically a touch detection just like the touch detection on ...
4
votes
1answer
1k views

Difference between OnTouchListener and OnClickListener

I made an app which implemements a View OnTouchListener. When I uploaded it to the Market, I get the following message: This apk requests 1 features that will be used for Android Market filtering ...
5
votes
2answers
3k views

onTouchListener for entire screen

I have a screen filled with buttons, but want the onTouch-method to use the entire screen's coordinates. I first tried using a RelativeLayout with an onTouchListener, but never managed to make it ...
0
votes
3answers
1k views

Anyone know how to attach a touch listener to this class?

Thanks in advanced! package com.ewebapps; import android.content.Context; import android.graphics.Canvas; import android.graphics.Paint; import android.view.View; public class Dot extends View { ...
1
vote
1answer
687 views

touchlisteners and textviews

Actually I'm trying to implement an ontouchlistener into my android (1.5) application. therefore i implemented the "ontouchlistener" into the class, and then i put my code into the: public boolean ...