[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-04-30 Thread TonyDoc
Arrived, Scotland. Thanks google -- 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] Re: Power event

2010-03-08 Thread TonyDoc
I do something like this private static BroadcastReceiver batteryInfo = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if(Intent.ACTION_BATTERY_CHANGED.equals(action)) { int level = intent.getIntExtra(level,

[android-developers] How to shut down phone from within an Application?

2010-02-26 Thread TonyDoc
Is there anyway I can shut down the phone from my app without the need for user confirmation? -- 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

[android-developers] Re: Apps not appearing in market place on certain phones

2010-02-14 Thread TonyDoc
Bumpy de bump On Feb 3, 10:42 pm, TonyDoc tony...@gmail.com wrote: [ro.build.description]: [U8220-user 1.5 CRB17 20091126.110223 ota-rel- keys,relea se-keys] [ro.build.fingerprint]: [T-Mobile/U8220/U8220/U8220:1.5/ CRB17/20091126.110223:us er/ota-rel-keys,release-keys] On Jan 24, 9:13 pm

[android-developers] How to check if the phone is in Standby from a service?

2010-02-11 Thread TonyDoc
Anyone know how my service can check if the phone is currently in standby mode? And if I can trigger an event within my service when the phone comes out of standby mode... Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: How to check if the phone is in Standby from a service?

2010-02-11 Thread TonyDoc
... On Feb 11, 11:21 am, TonyDoc tony...@gmail.com wrote: Anyone know how my service can check if the phone is currently in standby mode? And if I can trigger an event within my service when the phone comes out of standby mode... Thanks -- You received this message because you

[android-developers] Re: Apps not appearing in market place on certain phones

2010-02-03 Thread TonyDoc
/20091126.110223:user/ota-rel-keys,release-keys] On Jan 25, 11:24 pm, dan raaka danra...@gmail.com wrote: Can you post the build fingerprint of the device that is NOT showing the app? $ adb shell getprop | grep fingerprint -Dan On Sun, Jan 24, 2010 at 1:13 PM, TonyDoc tony...@gmail.com wrote: Hi

[android-developers] Re: Apps not appearing in market place on certain phones

2010-02-03 Thread TonyDoc
[ro.build.description]: [U8220-user 1.5 CRB17 20091126.110223 ota-rel- keys,relea se-keys] [ro.build.fingerprint]: [T-Mobile/U8220/U8220/U8220:1.5/ CRB17/20091126.110223:us er/ota-rel-keys,release-keys] On Jan 24, 9:13 pm, TonyDoc tony...@gmail.com wrote: Hi Dave, I was unaware that some

[android-developers] Apps not appearing in market place on certain phones

2010-01-24 Thread TonyDoc
My family has got three android phones, an HTC Hero, a Samsung Galaxy, and a T-Mobile Pulse, all are running android 1.5 with the latest manufacturer firmware. On the T-Mobile Pulse, when searching for a couple of apps (ones that I have installed on the other two devices), I get returned 'no

[android-developers] Re: Apps not appearing in market place on certain phones

2010-01-24 Thread TonyDoc
? On Jan 24, 10:20 am, TonyDoc tony...@gmail.com wrote: My family has got three android phones, an HTC Hero, a Samsung Galaxy, and a T-Mobile Pulse, all are running android 1.5 with the latest manufacturer firmware. On the T-Mobile Pulse, when searching for a couple of apps (ones that I have

[android-developers] Re: Apps not appearing in market place on certain phones

2010-01-24 Thread TonyDoc
network. This was, as TonyDoc referred to, due to the app being protected. There is a link somewhere on the android site showing all providers who allow protected applications. I was not aware of this being phone specific however. Dave 2010/1/24 Yuvi yuvidr...@gmail.com They same happened

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-22 Thread TonyDoc
: requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); -Jason On Jan 21, 6:09 am, Andre andranik.abra...@gmail.com wrote: Hi TonyDoc, I agree with you, recently I've started to study Open GL ES

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-21 Thread TonyDoc
Hi all, interesting thread, here's my tuppenceworth. My first attempt at a simple game took the same approach, things looked favourable when I first threw a few dozen sprites onto the canvas along with some simple game logic to try and get a handle on fps and timing. I was getting around 40-45fps

[android-developers] Re: Market access on the emulator?

2010-01-21 Thread TonyDoc
Option 1. Get hold of the APK from the developer and install it on your emulator Option 2. If the app is unprotected, use a backup utility to copy the APK off your phone and onto your SD card, then copy it onto the emulator install. Option 3. Make (or google for) an AVD with the market app

[android-developers] Re: Accelerometer on Motorola Droid

2010-01-19 Thread TonyDoc
Hi, As PhoenixofMT said, calibration from factory is poor, but sufficient for most games and the like. I had to write a similar calibration routine into my software before I managed to get any realistic figures from the accelerometer. The user is required to sit the device in the various

[android-developers] Re: Accelerometer on Motorola Droid

2010-01-19 Thread TonyDoc
Hi PhoenixofMT, I've looked into augmenting the accelerometer data with GPS info. The major hurdle is not the physics, it's the resolution of the GPS data provided, which is only timestamped to the nearest second! This makes it extremely difficult the calculate any sort of realistic figures

[android-developers] Re: SensorManager.registerListener gives unexpected results

2010-01-19 Thread TonyDoc
Thanks dan, this fixed it, sorry for not getting back sooner... On Dec 13 2009, 9:57 pm, dan raaka danra...@gmail.com wrote: the IK series have the fix. -Dan On Thu, Dec 10, 2009 at 12:28 AM, TonyDoc tony...@gmail.com wrote: I'm running firmware 1.5, baseband I7500XXII5, kernel

[android-developers] Re: How to GIF image for a finate time

2010-01-06 Thread TonyDoc
Convert it to multiple png's use androids animation manager. On Jan 6, 5:31 am, RamaMohan rama.mohan...@gmail.com wrote: Hi all, I want to show  a loading Image of GIF type  for a finite time .how to do this. Please tell me the solution if anyone knows. Thanks, Ram -- You received this

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-10 Thread TonyDoc
I'm running firmware 1.5, baseband I7500XXII5, kernel 2.6.27.35, build no 76XXCSDCBALUM6375 On Dec 10, 4:51 am, dan raaka danra...@gmail.com wrote: what is the full version name ? -Dan On Wed, Dec 9, 2009 at 10:41 AM, TonyDoc tony...@gmail.com wrote: Thanks Dan, I see K4 is out

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-09 Thread TonyDoc
, TonyDoc tony...@gmail.com wrote: What do you mean? Newer builds? Do you mean 1,6, 2.0? I'm using 1.5 SDK to try this... On Dec 7, 5:45 pm, dan raaka danra...@gmail.com wrote: The newer versions of the build dont exhibit this problem .. -Dan On Mon, Nov 30, 2009 at 6:30 AM, TonyDoc tony

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-09 Thread TonyDoc
Thanks Dan, I see K4 is out in the wild now. But not yet on NPS. Is it this firmware you speak of? On Dec 9, 8:15 am, TonyDoc tony...@gmail.com wrote: Hi, I have firmware I5on my device (latest I think). Do you know which firmware gives correct sensor updates? On Dec 8, 6:31 pm, dan raaka

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-08 Thread TonyDoc
V/SensorEvent( 2054): Time=19 V/SensorEvent( 2054): Time=19 V/SensorEvent( 2054): Time=59 V/SensorEvent( 2054): Time=39 V/SensorEvent( 2054): Time=59 V/SensorEvent( 2054): Time=79 V/SensorEvent( 2054): Time=100 On Dec 6, 6:09 am, TonyDoc tony...@gmail.com wrote: Hi, Could someone try

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-08 Thread TonyDoc
What do you mean? Newer builds? Do you mean 1,6, 2.0? I'm using 1.5 SDK to try this... On Dec 7, 5:45 pm, dan raaka danra...@gmail.com wrote: The newer versions of the build dont exhibit this problem .. -Dan On Mon, Nov 30, 2009 at 6:30 AM, TonyDoc tony...@gmail.com wrote: I'm registering

[android-developers] Re: SensorManager.registerListener gives unexpected results

2009-12-06 Thread TonyDoc
12-06 11:04:04.557: VERBOSE/SensorEvent(27604): Time=214 12-06 11:04:04.967: VERBOSE/SensorEvent(27604): Time=413 Thanks On Nov 30, 3:03 pm, TonyDoc tony...@gmail.com wrote: Here is the sample code package com.example.example; import android.app.Activity; import android.hardware.Sensor

[android-developers] Re: Samsung devices and 3D performance

2009-12-04 Thread TonyDoc
Samsung hardware drivers for 3D, Power, Accelerometer and Camera (amongst others) are dismal. I recommend not to buy a samsung if you need decent functionality from any of this hardware. On Dec 4, 5:16 am, SoftwareForMe.com sa...@softwareforme.com wrote: Greetings, We acquired a Samsung Moment

[android-developers] SensorManager.registerListener gives unexpected results

2009-11-30 Thread TonyDoc
I'm registering a sensor listener with this line of code. mSensorManager.registerListener(this,mSensorManager.getDefaultSensor (Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_FASTEST); The rate is set to SENSOR_DELAY_FASTEST with the expectation that I would receive events roughly every

[android-developers] Re: passing multi dimensional string array between two actvities.

2009-11-30 Thread TonyDoc
is there a reason you cannot make the array public? On Nov 30, 5:55 am, pavan pavankumar.k...@gmail.com wrote: Here is my Problem : I want to pass multi dimensional String array between two activities or pages. I already tried with bundle.putextra like methods. But those allow only one

[android-developers] Re: sounpool problem

2009-11-25 Thread TonyDoc
I had issues with this too, converting all music to mp3 fixed it. I think there are weird bugs in soundpool relating to sample rates with wav files. On Nov 25, 2:49 pm, Jags jag...@gmail.com wrote: i am trying to play continuous background music using sound pool here is my code        

[android-developers] Re: Invalid Audio Buffer Size on Samsung Galaxy

2009-11-16 Thread TonyDoc
Add you bug to the list over at androidforums.com, samsung seem to have a dreadful android/galaxy support team. On Nov 15, 4:55 pm, joelt j...@harpsoft.com wrote: Further analysis reveals it only supports an 8k sampling rate. This is obviously a bug. Where do I file a bug report against the

[android-developers] Re: Market on emulator, scamming opportunity ?

2009-11-07 Thread TonyDoc
You can only rate once per google account. On Nov 7, 2:44 am, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: If you create an emulator on your PC that has a market app, then download it, you can rate it as many times as you can create emulators with the market app. Of course, this

[android-developers] Re: onTrackballEvent hogging CPU time.

2009-10-20 Thread TonyDoc
Thanks James, I've been struggling with this for a few days. This helps a lot. Ta, Tony --~--~-~--~~~---~--~~ 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] Re: Image transparency

2009-10-18 Thread TonyDoc
I suppose an png with transparacy is out of the question? On Oct 17, 2:21 pm, Neilz neilhorn...@googlemail.com wrote: Anyone know if you can make part (i.e. a section which you could measure in pixels) of an image transparent? What graphics features would I need to look at?

[android-developers] onTrackballEvent hogging CPU time.

2009-10-18 Thread TonyDoc
Hi, First post here, so excuse my French. I'm writing a little game which has an activity thread, a gui/ surfaceview/handler thread and a 3rd logic thread (emulating a cpu core). I am finding that when I move the trackball, the logic thread slows down dramatically until I stop moving the