[android-developers] EXCELLENT HOT LIST: ||JAVA || ORACLE CC || FULL STACK || JAVA J2EE/UI || DevOps || ORACLE CC TESTER ||

2017-01-30 Thread madasu melody songs m
Hi Partner!!! I am *Madasu* from* Riyantech Software Solutions Inc *, Hope you are doing great today... Please find the updated *HOT LIST *of my consultants. Below is the list of Available Candidates for your requirements. Let me know if you have any requirements that

[android-developers] EXCELLENT HOT LIST: ||JAVA || ORACLE CC || FULL STACK || JAVA J2EE/UI || DevOps || ORACLE CC TESTER ||

2016-10-26 Thread madasu melody songs m
Hi Partner!!! I am *Madasu* from* Riyantech Software Solutions Inc *, Hope you are doing great today... Please find the updated *HOT LIST *of my consultants. Below is the list of Available Candidates for your requirements. Let me know if you have any requirements that

[android-developers] EXCELLENT HOT LIST: ||JAVA || ORACLE CC || QLIKVIEW || JAVA J2EE/UI || DevOps || QA/SELENIUM||

2016-10-20 Thread madasu melody songs m
Hi Partner!!! I am *Madasu* from* Riyantech Software Solutions Inc *, Hope you are doing great today... Please find the updated *HOT LIST *of my consultants. Below is the list of Available Candidates for your requirements. Let me know if you have any requirements that

[android-developers] Shop Stats ready for open signups!

2011-02-28 Thread songs
Hi, I posted a while back about a web service I created for Android sales stats (http://groups.google.com/group/android-developers/browse_thread/ thread/3274fa442b87a618/e3e78ae3ed358892) Shop Stats is now out of closed beta! Sign up now and sanity check your sales figures for tax time! The

[android-developers] Shop Stats Beta Testers

2010-11-04 Thread songs
Hi, I'm an Android developer who used to spend an embarrassing amount of time obsessively hitting refresh on my Checkout orders page in order to track the action for the day. In order to get back to writing apps, I basically abandoned them for the last few months in order to write up something

[android-developers] Re: Background music in android

2010-11-04 Thread songs
You can probably do what you want by wrapping your music start/stop calls in a Service. Regards, Steve On Nov 4, 2:31 pm, nena joy nenaj...@gmail.com wrote: Hi,    I created an application.In that ,when one of the activity start background music too play. And when I go to next

[android-developers] Re: Are 3rd party app stores a good idea for free apps?

2010-11-04 Thread songs
I'm interested in hearing if anyone else has experience selling on third-party sites as well (handster.com in particular). Wondering if it's worth the effort to manage across multiple markets. On the one hand, uploading a file to another revenue channel seems easy enough. On the other hand,

[android-developers] Re: Reboot bug?

2010-08-11 Thread songs
10, 6:26 pm, Romain Guy romain...@android.com wrote: This permission can only be granted to system apps or applications with the same signature as the default firmware. On Tue, Aug 10, 2010 at 6:17 PM, songs coca.c...@gmail.com wrote: I'm trying to use the newrebootfunction defined here

[android-developers] Reboot bug?

2010-08-10 Thread songs
I'm trying to use the new reboot function defined here: http://developer.android.com/reference/android/os/PowerManager.html#reboot%28java.lang.String%29 but I'm running into permissions issues even though I have the REBOOT permission in my manifest: uses-permission

[android-developers] values-land not being picked up for Android 1.5

2010-04-07 Thread songs
Hi, I have a widget with a set of layout parameters in the values and values-land folders for portrait and landscape display respectively. On my G1 running 1.6, everything looks great in either orientation. On a 1.5 emulator, things look fine in portrait, but not in landscape. It's clearly using

[android-developers] Verify error on Motorola Backflip

2010-03-23 Thread songs
Hey, I'm having trouble tracking down a Verify error reported by a Motorola Backflip user. The most confounding thing is that I have another Motorola Backflip user for whom my app works great. I've got a wrapper class that chooses between telelphony.SmsManager and telephony.gms.SmsManager

[android-developers] Re: Call processing

2010-03-13 Thread songs
It actually depends on how it's called. There's a sequential version and a non-sequential version. Calls use the sequential version. The priority attribute is referenced in the documentation specifically for call processing. I figured out how to do what I need to do, but it was a little

[android-developers] Call processing

2010-03-10 Thread songs
Hi, I've got two apps that process calls great independently, but I'm having trouble getting them to play nice together. I've set the priorities on their intent filters so that they get the broadcast in the right order, but when I process with the first one and set the result, the second process

[android-developers] Italics clipped in widget

2010-02-08 Thread songs
I've got a button with italics text in an app widget and the last letter gets clipped when I set the width to wrap_content. It doesn't get clipped with fill_parent, but then that messes up the selection order. Things I've tried: - space after my text - seems to get trimmed off automatically -

[android-developers] Re: Bring up active dialer or send dial tone

2009-02-08 Thread songs
...@android.com wrote: On Jan 27, 2:45 am, songs coca.c...@gmail.com wrote: Hi, I'm trying to write a convenience app that needs to bring up the active dialer for a connected call, but I'm having issues after trying a couple of approaches. Sorry, right now the DTMF dialpad is built

[android-developers] PhoneStateListener state transitions

2009-02-08 Thread songs
Hi, I'm a little confused by what I'm seeing with regards to phone state transitions via the PhoneStateListener. When I receive a call, this is what happens: (call comes in) RINGING - IDLE (I pick up) OFFHOOK (I hang up) IDLE It's that first transition from RINGING to IDLE without any

[android-developers] Re: PhoneStateListener state transitions

2009-02-08 Thread songs
Also, adding/receiving other calls while on an existing doesn't seem to send any new events. On Feb 8, 3:21 am, songs coca.c...@gmail.com wrote: Hi, I'm a little confused by what I'm seeing with regards to phone state transitions via the PhoneStateListener. When I receive a call

[android-developers] Bring up active dialer or send dial tone

2009-01-27 Thread songs
Hi, I'm trying to write a convenience app that needs to bring up the active dialer for a connected call, but I'm having issues after trying a couple of approaches. ACTION_DIAL - I've tried starting a new dialing activity and while this brings up a new dialer, it's not connected to the existing

[android-developers] Re: Bring up active dialer or send dial tone

2009-01-27 Thread songs
Anyone? --~--~-~--~~~---~--~~ 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] Detect which Home screen the user is on?

2008-11-21 Thread songs
Hi, So there are three screens that the user can flip between on the Home screen. Is there a way to detect which screen they're on or some way to catch when they've flipped between screens? Thanks, Steve --~--~-~--~~~---~--~~ You received this message because

[android-developers] Repeating alarm canceled on activity close?

2008-11-20 Thread songs
Is the following behavior documented somewhere and I just missed it? When I set a repeating alarm in response to a button click, the alarm triggers the expected event only if the activity is in the foreground. If I close or pause the activity, the alarm seems to disappear. When I set the same

[android-developers] Re: Repeating alarm canceled on activity close?

2008-11-20 Thread songs
:46 AM, songs [EMAIL PROTECTED] wrote: Is the following behavior documented somewhere and I just missed it? When I set a repeating alarm in response to a button click, the alarm triggers the expected event only if the activity is in the foreground.  If I close or pause the activity

[android-developers] Re: ListView set default checked state

2008-11-20 Thread songs
());   holder.checkbox.setChecked(tasks.get(position).isCompleted());   return convertView; } static class ViewHolder {   CheckedTextView checkbox; } Hope this helps Armando On Nov 9, 5:30 am, songs [EMAIL PROTECTED] wrote: Hi, I've got a multi-choice checkbox list being populated from a database

[android-developers] Re: Accelerometer sensors shut off during sleep?

2008-11-20 Thread songs
I can get this to work if I hold a partial dim wake lock, but I'd rather not keep the screen on if I don't have to. On Nov 19, 2:25 am, songs [EMAIL PROTECTED] wrote: Hi, Do the accelerometer sensors shut off during sleep mode even if I have a partial wake lock?  I've got my sensor code

[android-developers] Accelerometer sensors shut off during sleep?

2008-11-19 Thread songs
Hi, Do the accelerometer sensors shut off during sleep mode even if I have a partial wake lock? I've got my sensor code service doing what I want as long as the phone is awake, and I was hoping that holding a partial wake lock would enable it to do the same when the phone is asleep since the

[android-developers] onDestroy/AlarmManager interaction on install?

2008-11-07 Thread songs
Hi, I just tracked down a really hairy issue that made a lot of my users think my app did nothing and made me really confused because I couldn't recreate it on my phone. In my onDestroy, an AlarmManager sets up a repeating alarm if a given preference is set to true (defaults to true). When the

[android-developers] Re: How to set up as a straight vertical display

2008-11-06 Thread songs
You probably want to put the following in your activity's onCreate: setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); Cheers, Steve On Nov 5, 11:28 pm, dailyLife[EMAIL PROTECTED] wrote: Hi,EveryOne.   Today, I finally had to buy the G1, I have to write the software

[android-developers] Orientation change - start Action/Service?

2008-11-06 Thread songs
Hi, I know how to detect an orientation change when an activity is running, but is there a way to have an orientation change trigger the launch of an activity or a service? Cheers, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Orientation change - start Action/Service?

2008-11-06 Thread songs
action start an activity or a service. Cheers, Steve On Nov 6, 12:54 am, for android [EMAIL PROTECTED] wrote: http://code.google.com/android/reference/android/app/Activity.html#se...) On Thu, Nov 6, 2008 at 2:18 PM, songs [EMAIL PROTECTED] wrote: Hi, I know how to detect an orientation

[android-developers] Re: Orientation change - start Action/Service?

2008-11-06 Thread songs
Those links were interesting, but again had to do with dealing with orientation in a running activity. The suggestions for detecting and setting the orientation were also for a running activity. What I'm looking for is for something that'll trigger the start of an activity based on an

[android-developers] Re: Orientation change - start Action/Service?

2008-11-06 Thread songs
Hi, Sorry, when I say flip, I mean flip the screen out and expose the keyboard. I thought about having a service/alarm that polls every second, but that seems like a big waste of battery and cpu cycles. Ideally, I'd like to register for an event that gets sent when the user pops the screen in

[android-developers] Re: Confusion about Sorry! The application ____ (process ____) has stopped unexpectedly... message

2008-11-02 Thread songs
Hi, The first thing you need to do is to look at the logs. Open up a shell to the sdk and fire up: adb logcat. This will show you the actual stacktrace that's coming up and you should be able to figure out the issue from there. Regards, Steve On Nov 2, 9:32 pm, illiniwatcher [EMAIL

[android-developers] Making a background app like the clock?

2008-10-22 Thread songs
Hi, How do we go about making applications that can run directly on the Home screen in their own discreet UI container like the analog clock? Regards, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Making a background app like the clock?

2008-10-22 Thread songs
Ah. I tried looking around for references to this topic but couldn't find any. Thanks for the info. On Oct 22, 2:36 pm, Casey Borders [EMAIL PROTECTED] wrote: They have said this isn't going to be supported in 1.0 of the SDK. On Wed, Oct 22, 2008 at 5:30 PM, songs [EMAIL PROTECTED] wrote

[android-developers] Re: OutOfMemoryError when switching orientation

2008-10-13 Thread songs
orientation. On Oct 11, 10:15 pm, songs [EMAIL PROTECTED] wrote: Tracked the leak down to my animation thread which was getting recreated on every onCreate.  From the lifecycle docs, I had thought that onCreate only got called when the activity was starting fresh and any old instances had died

[android-developers] Google Visualization doesn't show?

2008-10-13 Thread songs
Hi, It seems like only image-based graphs will show up in the browser. Going to: http://code.google.com/apis/visualization/documentation/gallery/linechart.html doesn't work, but going to the image based one at:

[android-developers] Re: OutOfMemoryError when switching orientation

2008-10-13 Thread songs
by the time you return from onDestroy().  If you do that, there will not be a leak. On Oct 13, 1:46 pm, songs [EMAIL PROTECTED] wrote: This is a little confusing then, though.  The animation thread dies as expected when I stop the application using the back arrow, but does not die (without being

[android-developers] Re: OutOfMemoryError when switching orientation

2008-10-11 Thread songs
of expected behavior so I'm not too worried about things now, but there's gotta be something I'm missing that would help button this up a little tighter. - Steve On Oct 10, 1:53 am, songs [EMAIL PROTECTED] wrote: Interesting.  Thanks for the lead.  I'll look into this an report back either way

[android-developers] Re: OutOfMemoryError when switching orientation

2008-10-10 Thread songs
, Oct 9, 2008 at 10:02 PM, songs [EMAIL PROTECTED] wrote: Hi, I think that either I've stumbled onto a bug or I'm missing something on how to manage my resources.  I have an activity with a Java based view that contains 30 or so small images (~2k each .png) that are loaded into an array