0
votes
1answer
80 views

android setting ontouchlistener on linearlayout does not work

I am new to android and I'm trying to detect sliding events. If I add my listener to a webview or textview it works perfectly fine: WebView myWebView = (WebView) findViewById(R.id.myWebview); ...
0
votes
2answers
44 views

Create a linearview on every activity to perfom action

I am trying to create view that sites underneath all others that will perform an action when 3 fingers are touched. These activities all have their own touches and swipes. I have got this to kind of ...
-2
votes
1answer
75 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
0answers
39 views

Android Linkify disables onTouch event

I have a problem with Linkify. I have a TextView and it is inside a LinearLayout. I implement onTouchListener for the LinearLayout. so if use Linkify for the textview like this ...
0
votes
0answers
41 views

how can i use onlongclick on linearlayout which has pager and listview?

I'm try to make an app with linearlayout. and this linearlayout has small pager and listview. however, i tried to use long click method on linearlayout. just like below. LinearLayout mainLayout = ...
0
votes
0answers
229 views

leftMargin attribute of LayoutPrams in custom component

I have a custom component which extends LinearLayout and implements onTouchListener This component makes some changes to the graphics when onTouch fired and alters leftMargin attribute of the custom ...
0
votes
0answers
100 views

How to use onTouch event with scroll view

I have a LinearLayout and I've added onTouch listener on this layout. but when adding scrollview inside this layout , the onTouch doesn't work, why and what is the possible solution please ?
0
votes
2answers
451 views

How to make a Layout listener ignore views on top of it - android

I have a LinearLayout and I want to see when a user has touched it, and has released their finger. I thought I could do this by adding a onTouch listener and checking the event. This linearLayout ...
0
votes
2answers
4k views

Implementing OnTouchListener on LinearLayout - Android Development

public class UnitConverterActivity extends Activity implements OnTouchListener { /** Called when the activity is first created. */ LinearLayout mLinearLayout; @Override public void onCreate(Bundle ...