Tagged Questions
0
votes
1answer
26 views
Custom ImageButton View
I made a custom button that is an odd shape so I overrode the `dispatchTouchEvent.
Then I added a onTouch listener to make the image change when touched.
The onClick attribute stopped working so I ...
0
votes
0answers
30 views
OnTouchListener for list item layout not taking for inner controls
In the custom listview,I am using a base adapter and setting onTouchlistener for convertView inside getView() to get swipe for each row.
I have also a seekbar, imageview inside each listview item. ...
0
votes
0answers
12 views
Problems using gestureDetector on top of buttons or editText
I'm changing activitys by fling using gesture detectors, but if I try to swipe on top of buttons for exemple, it doesn't work.
@Override
protected void onCreate(Bundle savedInstanceState) {
...
0
votes
0answers
11 views
Implement onClickLisener on invisible or gone ImageView?
Implement onClickLisener on invisible or gone ImageView, is it posible?
2
votes
1answer
58 views
Issue on changing the resource in imageView when that imageView is pressed
I am trying to write an application to change the image resource, when that imageView is pressed.
I referred this link.
I used both setOnTouchListener and setOnClickListener in my code. In both, i ...
0
votes
0answers
83 views
Android - OnClickListener and Multi Touch
I've noticed in my app that when one finger is on a button and another finger touches down and up another button (click), the second button will not receive an OnClick event. I assume this is because ...
0
votes
1answer
76 views
Set latency for OnTouchListener when using it for drag and drop actions
I Have a project with table rows that can be moved to other Tables via Drag and Drop. I want these Rows to be highlightable as well, I set focusable and focusableontouchmode to true and the background ...
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
1answer
140 views
How to detect touch events on disabled checkbox in android
I have a layout with couple checkboxes. When one checkbox gets checked the others are set to CHECKED=true and ENABLED=false. Now I want the user to be able to tap on any of that disabled checkboxes ...
0
votes
1answer
310 views
ImageView inside ScrollView with onTouch() or onClick() Event
I have an ImageView inside a ScrollView. The ImageView is clickable and opens up a new Activity.
Whenever I scroll through my ScrollView first touching the image (But not releasing my finger yet) and ...
0
votes
2answers
89 views
Which is better approach for OnClick Implementation?
For implementation of onClick function which approach is better?
Saving touch start / touch up coordinates and processing this values for closeness? Like, if starting point and up point close each ...
3
votes
2answers
155 views
Loop a sound while a button is pressed
I'm trying to loop a sound while a button is pressed down.
How could I do that while I'm pressing the button hadling the event "MotionEvent.ACTION_DOWN" will not stop running the sound? The way I ...
1
vote
1answer
256 views
OnClick supresses OnTouch below
I have an app with several ImageViews that are clickable. All these images are inside a LinearLayout.
I implemented an OnTouchListener and set it to the LinearLayout. When I swipe over it, my ...
0
votes
3answers
1k views
android, “press and hold” Button, needs to change states (custom XML selector) using onTouchListener
I've got a Button graphic which needs to have "press and hold" functionality, so instead of using onClickListener, I'm using onTouchListener so that the app can react to
MotionEvent.ACTION_DOWN,
...
0
votes
0answers
420 views
issue with android's setAdapter method of AlertDialog.Builder and DialogInterface.OnClickListener
I am trying to display some custom list on AlertDialog.Builder to show it as dialog and setting DialogInterface.OnClickListener for click actions to update the clicked item on the view. below is the ...
1
vote
2answers
161 views
Android OnClick and onTouch : Which one is better?
I am developing a android application, in which we have standard login registration pages.
I like to ask about onClick listener and onTouch listener, which action listener is better for implementing ...
0
votes
0answers
449 views
android : doesn't work click event
I have simple listview. Its items are simple linearlayout with android:clickable="true"
in my adapter i set OnTouchListener and OnClickListener. my part of code of getView method :
...
0
votes
1answer
137 views
Android scaling and touch issue
I'm working on an android app that allows users to upload images to my server. On the selection screen, I allow them to scale the images using pinch to zoom, and then they select the image by tapping ...
1
vote
3answers
1k views
Can't get touch event detected on a view and click event detected on a parent view
I've got a layout 'layout_base' that fills the screen and a child view 'home'.
I set an OnClickListener on the 'layout_base' to do some action (close a popup if it's open), and an OnTouchListener on ...
0
votes
1answer
501 views
How to enable the sound effect on touching a button?
If I implement the OnClickListener, the sound effect will work on clicking the button. While on implementing the OnTouchListener the sound effect doesn't work on touching it. So how to enable the ...