Android :: Delayed Click Events Mystery

Nov 12, 2010

The app I am working on is having this strange behavior - It works correctly for a while, but after some series of actions (that I'm not sure how to replicate) it does this - Does anybody recognize this scenario? Any ideas what might be wrong?

Android :: Delayed click events mystery


Android :: How To Correctly Handle Click Events On Widget?

May 9, 2010

There is a task to make smt like todo list on widget (with dinamic number of elements), how to organize this list for click support on this elements. I only found how add click event on one widget layout element (with setOnClickPendingIntent), and how send text to widget element TextView. But it's unclear how handle click events for sub-elemets, or how get click coordinates(or item) where was click event. I saw widget "Agenda widget" - and it work fine with clicking on different calendar rows.

View 1 Replies View Related

Android :: Button On Custom Dialog Not Responding To Click Events

Oct 12, 2010

I created a custom dialog that extends Dialog. One button on that the dialog is an "OK" button which the user is expected to press when finished entering information in other fields. I cannot get any listeners set to that button to fire.

public class HeightDialog extends Dialog {

private Button okButton;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.heightdialog);
this.okButton = (Button)this.findViewById(R.id.userOkWithHeight);
this.okButton.setOnClickListener(new android.view.View.OnClickListener() {................

View 2 Replies View Related

Android :: Programmatically Send Click Events To A View In Droid?

Jul 21, 2009

Is it possible to programmatically send click events to a view? if so, how?

View 1 Replies View Related

Android :: Trackball Doesn't Give Me Click Events / But Touch Screen Does

Mar 5, 2009

I have a list activity that creates a header row above the data rows from the adapter. I want to receive click events when the user selects the header or a data row (but my data rows have check boxes in them, so this part is tricky). When I use the touch screen, I get this expected behavior:

1. Tapping on any row causes a click event and a dialog appears.

2. Long-pressing on a data row causes a context menu to appear.

3. Long-pressing on the header row does *not* show the context menu.

However, when I use the arrow keys (emulator) or trackball (G1), I get this unexpected behavior:

1. Selecting any row fails to cause any click events, even though the row's appearance changes like it's being clicked.

2. Long-pressing on the header row *does* show the context menu, which I don't want.

3. Occasionally, it doesn't focus the correct row when I move up or down (e.g. it skips from the header to the last data row).

View 11 Replies View Related

Android :: Android - Set Click Events On ListView?

May 24, 2010

I'm looking to be able to open up a new view or activity when I click on an item in my ListView. Currently I have a list of restaurants, and when i click on a particular restaurant I want it to open up another screen that will show its address, google map etc. What I need help with is knowing how to set click events on the items in the list. At the moment I dont have a database of the items, they're just Strings.

package com.example.androidrestaurant;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import android.app.ListActivity;

public class Dundrum extends ListActivity {.............

View 1 Replies View Related

Android :: Market Search Results Position Mystery

Apr 2, 2010

How is an app's position in the Android Market search results determined? Is it as mysterious and complex as Google Web search results? We obviously don't want to change any words in our app's title or description that would hurt our position.

Same question applies for not only search results, but when clicking on a Category in the Android Market. How is the order of the list determined? I would think that Google would have published some guidelines at least that could help, but I haven't found anything yet.

View 3 Replies View Related

Android :: Mystery Null Pointer Error Seeking Opinions

Oct 31, 2009

An error that appeared in my Flurry logs but seemed impossible to reproduce otherwise just occured That's the good news.The bad news is that the LogCat info is not telling me enough.I would appreciate a second set of eyes taking a look and offering wisdom.The lead up is that I was playing with my app, and put it away for a while. I did a lot of other things with my phone since, like making phone calls, etc I hooked up my phone to the computer to make another attempt to find the mystery bug, and decided to see if anything weird appeared in the logs from earlier.I then brought my app to the foreground using the Home/Hold technique and whamo the bug appeared before my eyes in LogCat.

View 4 Replies View Related

HTC Incredible :: Froyo Keep Getting Mystery Notification Sound

Jul 30, 2010

I unlock my phone, I get a default notification sound. Sometimes, just randomly while messing with an app, I get the mystery notification sound.No emails, no texts, no notification bar items just <insert mystery notification sound here> somewhat randomly. It's not any app i recently downloaded either (=, I'm a bit more savy then that just want to see if someone else noticed this with the 2.2 OTA Leak.It doesn't do it while the screen is off

View 2 Replies View Related

General :: Motorola Droid 4 - Mystery Data Partition 3GB

Oct 26, 2013

Recently a strange partition (storage area?) Appeared on my phone. it is simply called 'data' and it would seem my phone has set this as the new default app installation area. it's 3gb in size..

When I plug it into the computer, The other storage (internal and sd card) are unavailable, as is normal, but this data partition can still be accessed.

How can I transfer over this data back to internal storage (the internal storage on my droid 4 is 8gb) and set the phone to use the internal storage as the default storage space?

Phone is rooted.

View 4 Replies View Related

General :: Mystery Apps Appearing On Play Store?

Aug 21, 2012

A couple of weeks ago I noticed a number of apps that appeared on my All Apps list without me ever even installing them.

The two by martetrut and the casino one. I tried searching my phone for any trace of these apps and found nothing other than their appearance on this list.

Today, I looked at my list and now more mystery apps have appeared, with another app by that martetrut dev.

I downloaded lookout and Norton and ran several scans and they didn't pick up anything.... I'm a little concerned.

If it matters, I'm completely stock. HTC One X

View 4 Replies View Related

Android :: ListView Selection - Make Only Item Click Be Effected By Click?

Apr 1, 2010

when I click on one item in the ListView that item's background changes to light gray, but when I continue to scroll through the list every 4th item has the background changed to light gray even though those other items have not been clicked. How do I make only the item I clicked be effected by the click?

ListView lv = (ListView) findViewById(R.id.resultsList);
lv.setAdapter(new ArrayAdapter(this, R.layout.resultitem, (String[])labelList.toArray(new String[labelList.size()])));
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView parent, View view, int position, long id) {
TextView tv = (TextView)view.findViewById(R.id.result);
tv.setBackgroundColor(Color.LTGRAY);
tv.setTextColor(Color.BLACK);

View 1 Replies View Related

Android :: Catching Both Click And Long Click On ListView

May 3, 2010

I have a ListView in my Activity. I am trying to catch both a click and a long click (which should bring up a context menu).

ListView lv = (ListView) findViewById(R.id.MyListView); ... lv.setOnItemClickListener(this); lv.setOnCreateContextMenuListener(this); ...

I notice that if I have both the click and long click listeners up, I won't ever get the long click listener (i.e. the context menu). If I remove the setOnItemClickListener() call, i get a call into

@Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo) {

You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe@googlegroups.com For more options, visit this group at

View 4 Replies View Related

Android :: Click To Expand List -and- Click On A Button?

May 31, 2010

I have just started my career as an android programmer, and am currently relying heavily on the sample code and api examples. I have been working with this api example, to produce an expandable list of items (note this example does not use the ExpadableListView).In playing with the example, I tried to add another widget that would become visible and be gone at the same time as the text (mDialogue in the sample code). This works well with another TextView, but as soon as I tried to add a button widget, it stopped working. The list would expand on first click, showing my hidden TextView and Button, but it will not disappear on further clicks. The button is however, clickable, and I was able to set up an onClick listener to change the button text back and forth.I'm starting to wonder, is it just not possible to have a clickable item inside a clickable list item? Or is there some kind of work around? Would it solve my problem if I used ExpandableListView?

View 1 Replies View Related

Android :: App For Sending Delayed SMS Messages?

Mar 9, 2010

I saw a thread for an app that allows you to send delayed text messages, deliver in x number of hours, but can't recall the name. I've tried searching but haven't had any luck.

View 4 Replies View Related

Android :: Handcent Messaging Delayed?

Aug 12, 2010

I use Handcent for my messaging. For the last two days I have been experiencing some slow messaging. By this I mean that when I send a message or receive a message, there is a delay before the message being sent or received pops up on my screen. I don't know why that is. Sometimes it is delayed for 15 seconds before showing on the screen. I have not done anything to cause this change. Otherwise the handcent has been working perfectly.

View 6 Replies View Related

Android :: Delayed Auditory Feedback

Nov 3, 2009

It's common knowledge among people who are afflicted with stuttering that it helps if you're hearing yourself with a little delay while your speak. This is called Delayed Auditory Feedback (DAF) and makes it easier to speak in a slow and deliberate manner. There are even hardware devices sold for this purpose: http://www.casafuturatech.com/ I've tried one of these devices for a few weeks now. It helps, but it's just one more thing to remember in the morning, one more thing to carry around, and it's pretty large. It's also inconvenient when speaking on the phone. I'd love to develop an Android app for DAF, but I'm not sure if it's possible. A DAF has sound input and output, just like a phone. But instead of hearing another person, the sound input is sent to the output, with an amount of delay (somewhere between 0-200 ms). Is that effect possible to achieve with Android? How would you create the delay? Also, would it be possible to create this effect also when using the phone, so that I hear the other person AND myself with delay?

View 2 Replies View Related

Motorola Droid :: Flash NOT Delayed For Android

Apr 19, 2010

According to a statement by Adobe, they are not delaying the release of Flash for Android, Blackberry, and webOS. I am guessing that means public beta will come out in May, and the release will be a nice 4th of July present. Source: http://www.engadget.com/2010/04/19/adobe-says-no-delays-to-flash-10-1-ceo-was-just-talking-hardwar/

View 7 Replies View Related

Android :: How To Delete Delayed Messages Before They Arrive At Handler?

Dec 28, 2009

My Problem is that I need to send messages with a delay of 1 second. The handler then initiates some action, you're getting the picture. There are nevertheless some conditions in which the already sent message should be deleted ( before the second elapsed ) to prevent the handler from doing anything. I couldn't figure out how to do this ( or if it's even possible ), so If anyone of you has a clue, please let me know.

View 2 Replies View Related

Android :: Phone Clock Always Delayed In Telling Time / Way To Set?

Aug 12, 2010

My clock always gets delayed. I always have to connect to the network or wifi to get a time update, it gets delayed 2 or 3 times a day. some times even after a time update it pushes back the time for 5 minutes more or less. I'm thinking if I don't update 2 or more time a day, in a week my clock would be delayed by an hour or so.

View 4 Replies View Related

Android :: Stock Ticker App For Real-time(or At Best, Delayed)?

Nov 9, 2009

Is there an app for real-time(or at best, delayed) stock reads? I have two apps on my Bold(one real-time and one delayed) and before I switch Id like to make sure Im not losing every application I currently use.

View 2 Replies View Related

Android : When Click On GDE And Click The Home Button - Switches Back To Stock Home Screen

Dec 19, 2009

When I DL'd the GDE app, I accidentally set my stock droid "HOME" screen as the default screen when the popup box came up asking me to choose between stock Home and GDE. Now when I click on GDE and click the home button, it switches back to the stock Home screen. How to I switch the settings now to set the GDE app as the new home screen?

View 15 Replies View Related

HTC Hero :: Ringtone Delayed / Need Slight Bit Of Lag ?

Aug 24, 2009

Just got my htc hero a few days ago, really like it so far (although looking forward to firmware update to sort out the slight bit of lag Anyway I was wondering, do ringtones start really delayed for anyone else? When I get a phonecall the trackball lights up but the ringtone doesn't start for about 10 seconds? I'm finding it a bit annoying! Am I missing a really obvious setting or something?

View 12 Replies View Related

Motorola Droid :: AOL Email Delayed?

May 4, 2010

Got an issue receiving my AOL Mail. The problem is most noticible if I receive an email on my account (view it on my computer because my phone only checks for new mail every 15 mins.) and read it/ delete it on my computer, about 2 hours later it is sent to my droid as New Mail? I have also noticed that mail i have not read has been delayed also. Any ideas? P.s. This is for a friend of mines DROID. Not really sure how to fix it because all my email is through Gmail!

View 1 Replies View Related

HTC Desire HD :: Delayed Due To Not Meeting Standards

Oct 11, 2010

Been waiting for this as my iphone broke last month and I'm using a awful samsung now. Just stumbled across this article about the Desire HD and Desire Z not meeting google standards which is holding the phone up. HTC Desire HD, Z may face delay due to failed testing | Electronista

View 2 Replies View Related

HTC EVO 4G :: Gmail And GVoice Push Is Slow / Delayed?

Jun 11, 2010

I know how to use google and search, but I still like personal feedback incase I missed something.Rooted with Unrevoked. Overclock Widget battery life tweak and the google talk/flickr/other battery tweaks. I'm going on 16 hours today with normal usage and the tweaks - Anyhow, yesterday and prior to that gmail and gvoice push was instant, but today and last night it's been slow and often never even comes unless I go to the app and update it manually. I do have ATK installed, but turned the auto kill to off and only use it when the bloat-sprint apps get running. So don't flame about that.Also, I changed the notification sound on each account and now I hear the set sound (quagmire app) and the android default after - when a push actually comes through.I can't find any settings that I unchecked that would make it not update as fast or at all (been back though all of them), but perhaps something else is screwy - I do have gmail and gvoice tabs open on 1 to 2 computers all day, if that would do it.And I guess I can't use data (unless it's wifi or 4G) while I'm in a phone call? Which really sucks because I like to do data related stuff while I'm talking to family and people who just blaber on and on. Miss that about my iPhone but other than that, I'm sold on android - 9 people I know got the evo already.

View 2 Replies View Related

Samsung Moment :: Got Delayed Handcent Notifications?

May 20, 2010

Since updating to 2.1, I've noticed that when I get a text message, the Handcent pop-up appears, and then maybe 5-10 seconds later, I get the notification. This is really annoying mainly because sometimes I've already read the message and replied or closed it, but now I have an annoying notification stuck there. Is anyone else experiencing this? Any suggestions on dealing with it (other than just dealing with it )?

View 1 Replies View Related

Sprint HTC Hero :: Delayed Text Messages

Apr 20, 2010

For the last couple of months there has been a 5-10 minute delay when I'm receiving a text. It tends to happen when the phone has been asleep for a while and the message would come in at 9:50 but it would be time stamped for 9:44. Any fix to this?!!! I had no such problems with my BB on the same network and location

View 5 Replies View Related

Samsung I7500 :: Donut Update Delayed?

Oct 9, 2009

If you're to believe Hands on Sprint Samsung Moment Android phone - Android and Me, we won't be getting Donut anytime soon. Skipping to 6:10 - "they" told him about Donut in 2010 for "Moment", I guess Galaxy won't be getting it prior to Moment, if ever. We really need Samsung to tell us officially about Donut because if the delay is true, it is a major blow to early adopters of their Android phones.

View 15 Replies View Related

Sprint HTC Hero :: Delayed Messages From Facebook On Phone

Feb 14, 2010

I just posted a new status on facebook, and stayed on there for 10 minutes. My phone is set up to receive the comment updates. On facebook someone left me a comment 2 minutes after i put it there and my phone got it 7 minutes later. Come to think about it, I barely get any text from facebook. Does the hero have some sorta delay? or could it just be sprint? I have wifi and mobile on so idk how this would work at all?

View 13 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved