[android-developers] How to receive/catch SIP MESSAGE

2012-02-07 Thread Beth
e is not set to catch the message and not able to respond. I have set a break point in IncomingCallReceiver ( which extends BroadcastReceiver class ), but it did not get hit. I would appreciate any help on how to catch this SIP message sent from the server. Regards, -Beth -- You received this

[android-developers] Re: How can we control the background data for Individual Apps ?

2012-01-06 Thread Beth
The background data setting might change for all apps with a quota or for a single app that is using more than the user would like. The background data setting that was once a simple boolean is now a complicated data structure. "Does the OS gives some kind of notification or does the app just s

[android-developers] Live Wallpaper configuration

2010-07-27 Thread Beth
live wallpaper display were as configurable as that... Thanks and regards, Beth -- 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 g

[android-developers] Re: ImageView setColorFilter, what to do for a bitmap?

2010-07-24 Thread Beth
I want to change is on top of another bitmap (background) that I do not want to fliter. On Jul 23, 9:19 pm, greg wrote: > Isn't your canvas associated with an ImageView?  (ImageView has a > setColorFilter() method.) > > On Jul 23, 1:31 pm, Beth wrote: > > > > > Hi all,

[android-developers] ImageView setColorFilter, what to do for a bitmap?

2010-07-23 Thread Beth
change the brown pixels of my bitmap to blue, or from white to red. Do you all have any suggestions? Regards, Beth -- 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@googlegro

[android-developers] Re: Dynamic TableLayout problem

2010-02-02 Thread Beth
David, The output shows you have a null pointer at line 93 of your activity. Look there for a solution. Also, I noticed you have System.out.println. Where are you expecting the println output to appear? You might want to replace that with Android.util.log. Regards, Beth On Feb 2, 3:41 am, David

[android-developers] Re: Doubts while doing app's with graphics

2010-02-01 Thread Beth
You can create an Animation Listener to call the new activity when the animation ends with the onAnimationEnd function. Good luck! On Feb 1, 9:00 pm, deeMurthy wrote: > Hi > > I have doubts while doing some 2D Graphics and animation. Here is what > i have done and what i want to do further: > An

[android-developers] Re: Lookup contacts in a certain group

2010-01-29 Thread Beth
quot; AND " + Data.MIMETYPE + "='" + > GroupMembership.CONTENT_ITEM_TYPE + "'", > null, > "DISPLAY_NAME"); On Jan 20, 2:50 pm, Beth wrote: > Are you trying to get their names?  If so, the following query works > for me where the group number is grpid in my code:

[android-developers] Re: Lookup contacts in a certain group

2010-01-20 Thread Beth
pid + " OR " + GroupMembership.GROUP_SOURCE_ID +"=" + grpid + " AND " +Data.MIMETYPE + "='" + GroupMembership.CONTENT_ITEM_TYPE + "'", null, "DISPLAY_NAME"); If you need their numbers, it gets a little more complica

[android-developers] Re: Invalidate and a card flip

2010-01-13 Thread Beth
Since you have exactly two images, face down and face up, you might try out an ImageSwitcher object. Toggle the image with show next and skip the validation business. On Jan 13, 7:00 am, Gregg Reno wrote: > I am working on a card game, and using a custom ImageView for the > cards.  I have an OnC

Re: [android-developers] Re: Create Nexus One live wallpaper

2010-01-10 Thread Beth Mezias
regards, Beth On Sun, Jan 10, 2010 at 11:11 AM, Romain Guy wrote: > No, don't do this in code, do this in your manifest. Otherwise there > will be an ugly transition. > > On Sun, Jan 10, 2010 at 9:57 AM, Beth Mezias wrote: > > Just to confirm, the code is ok if it sets the them

Re: [android-developers] Re: Create Nexus One live wallpaper

2010-01-10 Thread Beth Mezias
Just to confirm, the code is ok if it sets the theme: setTheme(android.R.style.Theme_Wallpaper); Merci beaucoup! On Sat, Jan 9, 2010 at 11:50 AM, Romain Guy wrote: > > Can you please tell me if an app is picking up the system wallpaper to > > set it in an Activity, will the new live wa

[android-developers] Re: Create Nexus One live wallpaper

2010-01-09 Thread Beth
In advance of the release I do have a question about this feature. Can you please tell me if an app is picking up the system wallpaper to set it in an Activity, will the new live wallpaper break the activity? On Jan 9, 1:16 am, String wrote: > On Jan 9, 7:30 am, Romain Guy wrote: > > > We are c

[android-developers] Active Activity?

2010-01-07 Thread Beth
o the button press that shows the user what the button did (since it did not do what was expected). The ActivityManager and WindowManager do not seem to offer this level of detail. Please share any insights you might have. Thanks and regards, Beth -- You received this message because you are subsc

[android-developers] Re: How can I add a button to a linear layout 'right justified'

2010-01-05 Thread Beth
The problem may be that the TextView atitle has android:layout_width="fill_parent". Try setting it to wrap_content and see if you get better results. Regards, Beth On Jan 5, 1:57 pm, n179911 wrote: > Hi, > > I have a linear layout like this: > >             android:

[android-developers] FLAG_CANCEL_CURRENT or FLAG_UPDATE_CURRENT

2010-01-05 Thread Beth Mezias
regards, Beth -- 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+unsubscr...@googlegroups.com For mo

[android-developers] Re: ListActivity not updating on Database update.

2010-01-05 Thread Beth
Hmmm - not sure you want to call this method more than once. setListAdapter(shows); Set the adapter once, when you create the list. Requery the list's cursor as needed. If you use a cursor adapter you may never have to requery manually. Good luck! On Jan 5, 7:42 am, mac-systems

[android-developers] Re: Led notification on Motorola Milestone

2010-01-05 Thread Beth
To define your own color and pattern, define a value for the ledARGB field (for the color)... from http://developer.android.com/guide/topics/ui/notifiers/notifications.html Regards, Beth On Jan 5, 7:14 am, Pablo Szyrko wrote: > Hi all, > I'm dealing with an issue related with no

[android-developers] Re: ServiceConnectionLeaked warning

2010-01-05 Thread Beth
Yep, based on your description it sounds like Activity 1 is already running and bound to the Service when you call it from Activity 2. There's your leak. See if you can put a test in Activity 1 before you bind to the service. If it is already running the service and bound, don't do it again. You

[android-developers] Re: Contacts-based app force-closing on Droid, unable to repro

2009-12-26 Thread Beth
Droid is limited and I really want to put out a new feature on Alarmoid. Boas Festas! Beth On Dec 23, 9:47 pm, Eric wrote: > I'm having problems with my application on Droid phones. I am unable > to reproduce the problems in the emulator. A co-worker of mine with a > Droid also

[android-developers] Re: Setting for "Use incoming call volume for notifications"

2009-12-21 Thread Beth
ess maybe an issue needs to be filed. So far I have not taken that step. If anybody has a better solution, please speak up! Thanks and regards, Beth On Dec 12, 11:25 am, Open wrote: > Hi All- > > Does anyone know where the value for "Use incoming call volume for > noti

[android-developers] Re: Using custom defaults for PreferenceScreen

2009-12-12 Thread Beth
Activity you can use both onResume and onPreferenceClick to manage the appearance of preferences (that is what I do). You might use these functions to manage preference values as well. I hope this makes sense. Regards, Beth On Dec 11, 6:38 pm, spocky12 wrote: > I've encountered the same b

[android-developers] Re: Localized to: unknown even though I have localized strings

2009-12-10 Thread Beth
you want to take that step? Thanks and regards, Beth On Dec 9, 4:19 pm, tassie wrote: > I have the same issue. I've been ignoring it, inasmuch as my > localizations obviously work on the device. > > Even so, I am wondering what is going on here. Did you ever get a > resolution

[android-developers] Re: TabActivity with scroll

2009-12-07 Thread Beth
nd of each item in the list. It's just a possibility if you really want more than 3 or 4 tabs. Regards, Beth On Dec 7, 10:53 am, "Mark Murphy" wrote: > > I want to use a TabActivity with 6 or 7 or more tabs. However, I do > > not want to clutter my screen with so many

[android-developers] Re: Device Specific System Settings

2009-12-07 Thread Beth
this can work for your app. Best regards, Beth On Dec 7, 12:29 am, Dianne Hackborn wrote: > If they are not part of the standard system, there is no API for them.  It > is possible for a vendor to provide an ADT plugin with their own APIs, but > afaik HTC has not done this. > > &g

[android-developers] Re: getting Contact data into the Emulator

2009-12-06 Thread Beth
OK, well, I put my mind to it and got it done. It's vCard format. I also saved a script with data to do it again (copy vcard files from my hard drive to the emulator pseudo-sdcard) more easily next time. Hopefully this info can help others. Boas Festas! On Dec 4, 6:17 pm, Beth wrote: >

[android-developers] Re: getting Contact data into the Emulator

2009-12-04 Thread Beth
my virtual sdcard and import from the sdcard? I mean you Xavier! F1! F1! Help! Help! On Dec 3, 5:49 pm, Beth wrote: > Any suggestions for testing aContactapp on eclair?  I can't seem to > putcontactdata into theemulator > > On Dec 1, 12:30 pm, Beth wrote: > >

[android-developers] Re: getting Contact data into the Emulator

2009-12-03 Thread Beth
Any suggestions for testing a Contact app on eclair? I can't seem to put contact data into the emulator On Dec 1, 12:30 pm, Beth wrote: > Do you have steps for me to pullContactdata off a phone and put it > into anemulatorfor test purposes?   The device has either the 1.5 or >

[android-developers] Re: Timer

2009-12-03 Thread Beth
Sorry, Can't do it! You need to track a timer when you set it. There's no way to poll the system. You can also notice that a set timer does not persist through a phone boot and would need to be reset in that case. On Dec 3, 4:22 am, "Sasikumar.S" wrote: > Hi, > > How to get whether timer is run

[android-developers] Re: Checked List View am I missing something

2009-12-02 Thread Beth
Take a look at the CheckedTextView in the android widget package. Should make things easier. Regards, Beth On Dec 2, 5:55 am, Jose Gomez wrote: > Bump any ideas? please!!! > > Thanks! > Sincerely > Jose C Gomez > > http://www.josecgomez.com > Sent from Jacksonville

[android-developers] Re: Phone still making sounds when it's silent?

2009-12-02 Thread Beth
The command you are using may or may not silence notifications. If the user has separated ringer and notification volumes in the Settings application then the notifications from email or text messages will continue to be heard. On Dec 2, 12:30 am, "Teo [GD API Guru]" wrote: > Hi, i got reports f

[android-developers] getting Contact data into the Emulator

2009-12-01 Thread Beth
the emulator crashes. Both contacts and contact group data is needed since I do not have a 2.0 device and I have code that needs the data to run. I thought somebody on this list might easily answer. Thanks in advance for any solution. Regards, Beth -- You received this message because you are

[android-developers] launching settings from my app

2009-11-03 Thread Beth
/catch block and an error toast to defensively code my app not to crash this way. Thanks in advance for any help you might offer. Regards, Beth -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Timepicker appearances, the disabled state is ugly

2009-11-03 Thread Beth
-in methods that would help. If you have suggestions for dealing with it, please let me know. Regards, Beth -- 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@googlegro

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth Mezias
Right, right... Dianne, could you possibly clarify whether or not the receiver goes in the foreground? Sent from my mobile. Regards, Beth On Oct 30, 2009 11:46 AM, "Mark Murphy" wrote: Beth Mezias wrote: > I don't read anything about broadcast receivers in > Dianne's

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth Mezias
Broadcast receiver's priority Sent from my mobile. Regards, Beth On Oct 30, 2009 11:41 AM, "Beth Mezias" wrote: It's intermittent. I don't read anything about broadcast receivers in Dianne's response. Sent from my mobile. Regards, Beth > > On Oct 30,

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth Mezias
It's intermittent. I don't read anything about broadcast receivers in Dianne's response. Sent from my mobile. Regards, Beth On Oct 30, 2009 11:32 AM, "Mark Murphy" wrote: Beth Mezias wrote: > Assume that when the broadcast receiver is called, another application

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth Mezias
er may not be getting the CPU. Is there any way to defensively code for this situation? Regards, Beth On Oct 30, 2009 11:03 AM, "Mark Murphy" wrote: Beth Mezias wrote: > OK, but my application is not running at the time. Sure it is. If your code runs, your application is runnin

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth Mezias
Murphy wrote: > > Beth wrote: > > Would the resulting execution of my broadcast receiver from the > > AlarmManager broadcast go into the background thread pool or get into > > the foreground inheriting from the AlarmManager? > > BroadcastReceiver is invoked on "t

[android-developers] Re: BG threads with 1.6; is the AlarmManager starving?

2009-10-30 Thread Beth
ulled into > the foreground scheduling class (else there would often be ANRs and such). > > > > > > On Thu, Oct 29, 2009 at 11:31 PM, Beth wrote: > > > I have a question about the background thread handling change that > > went into SDK 1.6.  I read here that

[android-developers] BG threads with 1.6; is the AlarmManager starving?

2009-10-29 Thread Beth
ating method? I am looking for suggestions to troubleshoot this problem. How can I determine if the problem is the broadcast, if it is the repeating alarm creation, or if there is some other issue like low memory coming in to play. Any ideas? Thanks and regards,

[android-developers] Re: ListView vs. ListActivity different default behavior

2009-10-26 Thread Beth
Does your ListView have a width set to fill_parent? On Oct 26, 5:30 pm, skyhigh wrote: > I have an application which has some activities that display a single > list and extends ListActivity.  The application also has other > activities that have several things on the screen in addition to a > l

[android-developers] Re: updatePeriodMillis not working for widget on 1.6

2009-10-23 Thread Beth
ideas? Thanks and regards, Beth On Oct 23, 6:15 pm, Dianne Hackborn wrote: > On Fri, Oct 23, 2009 at 6:16 AM, String wrote: > > > I'm already using alarms to drive my widget updates. Problem is, > > alarms are unreliable, especially with the proliferation of task > >

[android-developers] Re: Bold a row in ListView programmatically

2009-10-22 Thread Beth
Maybe your text settings are overwritten by the getView method of the simple adapter. That is the method where you want to set text characteristics. Otherwise a scroll down the list and return to item 2 will remove your bold. Good luck! On Oct 21, 7:41 pm, cartoontan wrote: > I have created a

[android-developers] Market upgrade requires same certificate

2009-10-21 Thread Beth
te requirement so that an upgrade will be published without the same certificate? Any feedback will be appreciated. Regards, Beth --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Re: System Setting ties notification volume to ringer volume

2009-10-06 Thread Beth
Hello again, So far no answers... Does anyone know of a way to simply detect that they are tied together. The MODE_RINGER_STREAMS_AFFECTED was a red herring. Thanks and regards! On Oct 4, 1:38 am, Beth Mezias wrote: > Hi all, > > Do you know a way to programmatically change the defau

[android-developers] System Setting ties notification volume to ringer volume

2009-10-04 Thread Beth Mezias
regards, Beth --~--~-~--~~~---~--~~ 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

[android-developers] Re: 1.6 error with NumericShaper.class?

2009-09-30 Thread Beth
Aargh, finally worked out that I duplicated the android jar in my Build Path libraries. Not sure how the properties got into that state but I am relieved to solve the problem. On Sep 26, 4:44 pm, Beth wrote: > In an effort to brute force a solution I removed the only instance of &g

[android-developers] Re: 1.6 error with NumericShaper.class?

2009-09-26 Thread Beth
week. The MotoDev version of Eclipse is behaving the same way. Any workarounds or suggestions would be deeply appreciated. Although it does not make sense, my next step is to downgrade and try an older version of Eclipse to see if I can get back on track. What a mess! Thanks and regards, Beth O

[android-developers] Re: 1.6 error with NumericShaper.class?

2009-09-25 Thread Beth Mezias
Nope, both apps are 100% Android SDK objects. Sent from my mobile. Regards, Beth On Sep 25, 2009 6:39 PM, "Xavier Ducrohet" wrote: Are you including 3rd party libraries in your application? Those might contain code that access (or include) classes in the java.awt namespace whi

[android-developers] Re: 1.6 error with NumericShaper.class?

2009-09-25 Thread Beth
25 14:48:29 - Alarmoid]1 error; aborting [2009-09-25 14:48:29 - Alarmoid]Conversion to Dalvik format failed with error 1 On Sep 18, 1:59 pm, Beth wrote: > Thanks for the suggestion, but, I am not using that lib in my code.  I > do not have any NumericShaper class call and cannot see how to clear &g

[android-developers] Re: 1.6 error with NumericShaper.class?

2009-09-18 Thread Beth
gt; IIRC awt is a separate library that you need to declare explicitly in > your application > manifest.http://www.google.com/search?hl=en&q=android+uses-library+awt > > R/ > > On Thu, Sep 17, 2009 at 1:49 PM, Beth Mezias wrote: > > Hiya, > > > When I try to open

[android-developers] 1.6 error with NumericShaper.class?

2009-09-17 Thread Beth Mezias
and regards, Beth [2009-09-17 13:44:14 - Flipper]processing dalvik/system/Zygote.class... [2009-09-17 13:44:14 - Flipper]processing java/awt/font/NumericShaper.class... [2009-09-17 13:44:14 - Flipper] trouble processing "java/awt/font/NumericShaper.class": [2009-09-17 13:44:14 - Flipper]

[android-developers] Re: Probing for an already set Alarm?

2009-09-15 Thread Beth
All you need to do is to set different request codes in your pending intent parameters to avoid this situation: "The setting of this new alarm, and the throwing out of the existing alarm is what I want to avoid." A correction to one line of code would let you use the alarm manager (sorry if my ea

[android-developers] Re: Probing for an already set Alarm?

2009-09-15 Thread Beth
What does the background service do, exactly? Sorry, I don't really want to sort through the two versions of your code. What I did see in the alarm version leads me to suggest that you can set a repeating alarm in your Activity after collecting the initial data rather than set a new Alarm each t

[android-developers] Re: onReceive not triggering for SEND / image

2009-09-09 Thread Beth
Here is the nudge you wanted... Your intent filter needs to be set on an activity. The code you posted shows it as a Broadcast Receiver. Change: to and move all your stuff from onRecieve to onCreate. That should take you forward. Good luck! On Sep 9, 10:25 am, EnnaN wrote: > and there we ar

[android-developers] Re: Probing for an already set Alarm?

2009-09-08 Thread Beth
It seems like you should be tracking exactly which Alarms you have set as a matter of course, rather than try to find out what is set after the fact. If you use a unique id for each alarm then you need not be concerned that you will overwrite one that is in the queue. When I say unique id, what I

[android-developers] Re: ListActivity Out of Memory

2009-09-08 Thread Beth
Romain covered some tips on lists and using compound drawables in his Google I/O session. Take a look here: http://code.google.com/events/io/sessions/TurboChargeUiAndroidFast.html On Sep 8, 6:49 am, Ives wrote: > I am using a ListActivity. Each list entry contains an ImageView and a > TextView.

[android-developers] Re: 5 mins to ADC II submission deadline - so what is your submission?

2009-09-07 Thread Beth
to zero for the amount of time you set. It has is a 'quiet time' schedule and you can create a timer on the fly. You can see the app firsthand in a five minute demo on YouTube. This is one of the apps in the contest you want to try. I hope y'all like it! Best regards,

[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-07 Thread Beth
t! Best regards, Beth URL: http://www.youtube.com/watch?v=yNcVkP_vK08 (YouTube Demo) http://docs.google.com/View?id=dfvkbzjp_84dz5db9fc (Dos And Donts) http://docs.google.com/View?id=dfvkbzjp_85htfctvfs (About Alarmoid) --~--~-~--~~~---~--~~ You received this mess

[android-developers] ExpandableListView won't redraw, static group data, dynamic child data

2009-07-29 Thread Beth
bit sparse and expandable list view example code is not a good match. Can anyone offer advice on how to use a DataSetObserver? It feels like I have to switch over to a Cursor type adapter. Any insight is most welcome. Pardon the double post to Android Beginners. Best regards, Beth On Jul 27, 2

[android-developers] code to mute using the MODIFY_AUDIO_SETTINGS permission

2009-03-17 Thread Beth
Hi, At the end of my AndroidManifest xml file you find this tag: I am using Eclipse to write code to mute notifications and I get a java.lang.SecurityException: Permission Denial from the Emulator every time. I realize the change will affect other applications, however, it was unclear that mo