The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
28 views

EditText event hadling

I have only one text view and one edit text in my activity. Once user enter some value in edit text and click outside of edit text some logic should perform (want to start ...
0
votes
1answer
29 views

android Calender event issues

hi everyone I am a newbie and learning android...i got the following code from this post written by @Abhi Put reminder in real calendar on the phone? this post does provide the answers, only code. ...
0
votes
0answers
35 views

How to find the text in textviews while gesturing on screen

Hi I need to get the text in textview while gesturing on the screen . This is my xml code..... <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
0answers
59 views

dispatch touch events from gesture listener onSingleTapConfirmed and keep selector effects

I have a list view with items containing multiple buttons. The layout for one item looks something like this: I have an overlaying transparent view, covering each entire list item. This view ...
0
votes
1answer
40 views

Alternative to CalendarContract in Android API 8?

My application needs the functionality to add Events into internal phone Caledar. In API 14 it is possible via CalendarContract with smth like the code below. What would be an alternative in API 8? ...
0
votes
0answers
50 views

Handle navigation buttons in a custom listView

I have a tabbed application. Each tab has got a custom listview. I am not able to track navigation buttons in a custom list view. I tried the following @Override public boolean onKeyUp(int keyCode, ...
0
votes
1answer
55 views

Permission check event (or log) for Android

I understand that when you install an android app you need to accept the permissions requested by the app. When you run the app, when it comes to the point that app really about to use that permission ...
0
votes
0answers
34 views

Clear reminders from calendar set by my app on its unistall

When my app is uninstalling, I am trying to clear reminders from calendar set by my app problematically. Going through some questions, like How to show an Activity BEFORE my app is uninstalled ...
1
vote
1answer
117 views

Show Dialoge using Pending Intent In Android

I am working on Calender Events reminder . There is no native Calender events reminder in android so user install different calender apps . Now these apps can be different on reminding events like on ...
0
votes
1answer
71 views

Custom Reminder PoP up View in Android

I am working on Calender Events reminder . There is no native Calender events reminder in android so user install different calender apps . Now these apps can be different on reminding events like on ...
0
votes
0answers
81 views

OnLongClick and expand - collapse doesn't work simultaneously with Expandable ListView

i have to popup alert dialog on long press of Group row in expandable listview .And it works when i implemented it in onGroupView method of my BaseExpandableListAdapter class.But after this expand ...
0
votes
1answer
71 views

getDownTime() and getEventTime()

What is difference between:getEventTime() and getDownTime()? In documentation http://developer.android.com/reference/android/view/MotionEvent.html Both seems to do the same thing but they output ...
0
votes
0answers
11 views

Get MotionEvent on keyboard

I'm looking is it possible to capture MotionEven data (pressure) on keyboard (in my app)? Or is there way to intercept all touches on screen in my app (something like full screen mode).
2
votes
2answers
71 views

NullPointerException for OnClickListener in certain phones

I'm getting a NullPointerException at this line: ImageButton sb = (ImageButton) findViewById(R.id.imageButton2); sb.setOnClickListener(new OnClickListener() { //error on this line public void ...
2
votes
3answers
188 views

Can't get ListView item selected

I am trying to learn how to receive a notification on a click on a radio button in a ListView but nothing comes back when I click on a radio button next to a ListView item. Below is the code where I ...
3
votes
2answers
53 views

ActionBar — shared button between activities

I have a button placed in an ActionBar. How can I make a button listener which is shared between different layouts that includes the ActionBar?
0
votes
3answers
220 views

How to implement an AlertDialog.Builder selected item click event?

I want to implement AlertDialog.Builder selected items click event. Below is what I have tried so far. I'm quite new to Android and I'm not sure how to access that event. How to implement the click ...
0
votes
2answers
303 views

Setting multiple home launcher apps doesn't work

Background Information: I want to create a child lock application. Therefore I need to disable all the keys (including the Home key) when the user is in the application. I basically want a similar ...
0
votes
1answer
96 views

Playing sounds on button click doesn't start

I am trying to make an app that plays sound when button clicks and I have like 100+ sounds and 100+ buttons. I have created the buttons and now am mapping it to the sounds to be played. Another thing, ...
0
votes
1answer
182 views

How to make an item selected in ListView to execute after a button is clicked?

I have a ListView and I want to select (highlight) an item first and then click a button before it goes to another activity. Here's an example of what I want to do: This is how I made my ...
0
votes
0answers
214 views

Accessing default calendar id

I am working on a application which set the events and reminders in calendars. The code i used for it is as follows. private void addReminder(int statrYear, int startMonth, int startDay, int ...
0
votes
1answer
29 views

How to get just some events from an Overlay that sees in the top of all applications in Android

Im trying to develope an app which is an Overlay working on top of all aplications in the system, till there I dont have problems. The issue is that my overlay has to be able to manage some events and ...
0
votes
2answers
89 views

Not Getting OnItemClick Event of ListView

As said in title I am Not Getting OnItemClick Event of ListView My code : ListView listView1 = (ListView) findViewById(R.id.listView1); listView1.setOnItemClickListener(new ...
0
votes
1answer
123 views

Android: how to delete recurring events

I'm building a calendar provider that is synchronizing calendar events with server. When I try to delete an event it is working fine if the event is non-recurring. When I try to delete recurring event ...
0
votes
1answer
119 views

android: EXDATE format when adding a calendar event

Can someone explain how to use EXDATE when adding event to android calendar? The documentation is pretty unclear about the format in which the EXDATE should be put. I tried many formats, these are ...
1
vote
1answer
219 views

Listview onItemSelected doesn't fire off when navigating back to the previous selected item

My activity includes 2 fragments. Fragment 1 in the left contains a ListView, let's call listView1, and fragment 2 in the right contains a GridView. I implemented a onItemSelectedListener to send data ...
2
votes
2answers
217 views

Fire event on AsyncTask finished

My app has a login activity and it checks the credentials via an internet website. To do so, I (have to) use an AsyncTask class. When login is successful, a global variable is set to true. Because ...
0
votes
3answers
305 views

Receiving onTouch and onClick events with Android

I have a view that need to process onTouch gestures and onClick events. What is the proper way to achieve this? I have an onTouchListener and an onClickListener set on the view. Whenever I do touch ...
0
votes
3answers
103 views

addTextChangedListener gives force close

I have four text box on which i am adding a TextChangedListener, Following is the code i implemented: public class PasswordActivity extends Activity{ /*This will store the password temporarily */ ...
0
votes
1answer
55 views

How to block volume button even when my app is not running

I want to block the volume button even when my app is not running how to do it..?
0
votes
1answer
43 views

Move action jerking

I have a View which I want to be draggable so I've overridden its onTouchEvent(MotionEvent event) method and, on move events, I reposition/translate my View based on the event action's (x, y) ...
0
votes
3answers
193 views

Android Event Handling

Which type of model is used by android to handle events. Is it delegation model or event model?
3
votes
0answers
77 views

how to track user touch.where it starts from,going to and stopped at on screen:

So far I have come up with the following code: case MotionEvent.ACTION_MOVE: if (x<=430 || y<=80 || y>=490) return true; mPath.quadTo(previousPoint.x, previousPoint.y, ...
0
votes
4answers
210 views

OnClick event is not firing in popup in android

I have made a custom popup in an app where the layout of the popup is as follows: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
0
votes
1answer
436 views

How to add an extra item to POWER SHUTDOWN “Device Options” list on Samsung S3?

I need to add an extra option to the spinner list that gets poped up when the power button is long pressed on S3. The list already has the following items - Power Off Airplane Mode Restart Mute - ...
0
votes
2answers
241 views

OnTouchEvent does not work on Edittext field, is there an alternative?

I have a edittext field which prefilled with the value "comment please..." Now I want to delete this content as soon as the User touches this field. In the documentation I saw that there is the ...
0
votes
1answer
229 views

Why motionEvent.getX() return inconsistent values, when using setScaleX()?

I've child view resides in a ViewGroup. I'd like to scale (zoom) the child with a pinch. I'm using setScaleX/Y() to scale the child. The scale is calculated form distance between 2 pointers, in ...
0
votes
0answers
95 views

selecting multiple cells in a table row by slide/swipe in android?

I have a table layout like a excel sheet I want to select multiple cells at once by touching on one box and slide through a row . like for this i have taken a table layout and iterated ...
2
votes
3answers
59 views

Capturing system event in an Activity

I'm planning to have a button in an activity which will start a service when clicked. However, GPS needs to be enabled for the service to do its work so I'd like to have the button disabled if GPS is ...
1
vote
1answer
186 views

Error ACTION_INSERT android 2.3

I am trying to insert an event in the calendar, it works perfect in android 4+ and android 2.2-, but when I run the app in android 2.3 I have a force close like this: No Activity found to handle ...
1
vote
1answer
286 views

android handle both scroll and click events on a TextView

I have a problem with my android app. I'm using a simple Textview with a vertical scrollBar to display lyrics from a song. The problem is that in my activity I set a Onclick event on this same ...
0
votes
0answers
65 views

How to highlight multiple views in one sliding motion?

I'm stuck with a problem that concerns Android Motion Events. I have a 2D array of EditTexts. These EditTexts can contain only one letter. What I want to do is to be able to highlight them as I glide ...
0
votes
1answer
115 views

Which listener to use to implement selection of multiple views by sliding the finger over them?

I am confused about what I should use to listen for the event of sliding the finger across views and selecting those views. Is this a hover event? Android doc says The hover may be generated via ...
0
votes
0answers
155 views

event.getDownTime() is saving the mouse down time giving me wrong time and saving previous time

i am using contextmenu display in imageview. my imageview have more touch event activity. so i am creating a long press event by timing of mouse down event . i am using event.getDownTime() for it. ...
0
votes
3answers
94 views

Android SDK - Animation prevents further events on View like OnClick()

I have an ImageView which is animated via startAnimation() to slide it into the screen. It is visible and enabled in the XML. When I add a Handler for a delay or an onClick event, nothing happens. ...
0
votes
0answers
42 views

what happens if list changes after an item is clicked in Android

I have a bug and that made me think about this question. My scenario is as follows : I have an activity A which has onUiInteraction() function over-ridden. There is list in Activity A whose each item ...
0
votes
2answers
105 views

How to allow several listeners to handle the same OnTouch events in Android?

I have two different objects that implement OnTouchListener. One of them, uses the event data to modify some internal data, and the other one Updates the UI. The problem is that if I set them both ...
1
vote
4answers
2k views

How can I send key events in android?

I am macking a custom navigation bar to Android 4.0.3.r1 and want to send key events like "Home" and "Back". My application is not a system therefore: IWindowManager mWindowManager = ...
0
votes
1answer
201 views

OnTouch method consumes click event and prevents execution in parent

I'm having a FrameLayout that has an extended ImageView (github) as a child. When I set an onClick()-Event to the FrameLayout it won't be triggered. The reason appears to be the onTouch() method's ...
1
vote
0answers
43 views

Moving through a tilemap; gets stuck vertically when it hit the middle of the map

So I'm making a simple game where I have a tilemap (or cellmap depending on your terminology). The problem is: if I have a map over about 100 tiles if I move about halfway down the map the app will ...

1 2 3