[android-developers] NDK for SDK 2.0.1?

2009-12-15 Thread Moss
with the new SDK but no NDK for it I'm losing potential users! Kind regards Moss -- 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] Parcelable not working

2010-04-13 Thread Moss
or readFromParcel cals of my Feed Class. Thx for the help in advance. Cheers, Moss -- 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

[android-developers] Speed issue: content provider vs plain sqlite db

2010-05-03 Thread Moss
in their onPause() call. Why is it so slow? Would it be better to implement a ContentProvider? And, would it really speed the app up? Thanks in advanced. Cheers, Moss -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Re: Animated background drawable

2010-10-20 Thread Moss
So just make some sprites move around in a 2D canvas. It's not too hard to be done :P On Oct 20, 5:31 am, Dianne Hackborn hack...@android.com wrote: On Tue, Oct 19, 2010 at 3:08 PM, Streets Of Boston flyingdutc...@gmail.comwrote: If i remember correctly, Twitter used to draw its animated

[android-developers] Re: Developing games for Galaxy Tab

2010-11-02 Thread Moss
To be able to create a resizeable layout in games. you normally use parts to define a button for example. Like a patch-9 image, which can be stretched horizontally and vertically. Apart from that for the UI it's better to use percentage values instead of absolute pixels (0.f .. 1.f). On Nov 2,

[android-developers] Re: ClassNotFoundException crash reports from Market

2010-11-24 Thread Moss
- com.package.app.ActivityB If I load com.package.app.ActivityB I'm getting the same error. Hope this can help you a bit. Cheers, Moss On Nov 23, 5:58 pm, Emanuel Moecklin emanuel.moeck...@1gravity.com wrote: Tauno Talimaa tauntz at gmail.com writes:   Hi all, I'm seeing some strange crash

[android-developers] Re: How to build a 2d GUI to an OpenGL ES app?

2010-11-29 Thread Moss
It's not stupid, if you consider creating a multi-platform app you are bound to native code :P. If you just want to make an Android one you should only go native if it's absolutely necessary in a performance manner. On Nov 27, 5:19 pm, Miguel Morales therevolti...@gmail.com wrote: Yes, the

[android-developers] Re: How to best work with web services? REST

2010-06-01 Thread Moss
You could try with a lightweight XMLRPC implementation, there is already an android one for it: http://code.google.com/p/android-xmlrpc/ On Jun 1, 7:48 am, Nando Scheidecker nando.andr...@gmail.com wrote: Are there any examples out there to best work with web service? I know that there is a

[android-developers] Re: Market problems again

2010-06-12 Thread Moss
Here the same I got a reliative new up on which had onlye 1.5k downloads and now 700 hundret, ratings are the same so it seams like a market problem. Hope it get right soon!! On 12 jun, 16:58, rexowner lap...@gmail.com wrote: The payouts I have received are 1.5-2x what would be indicated by the

[android-developers] Re: Speed issue: content provider vs plain sqlite db

2010-06-12 Thread Moss
in advanced. Cheers,  Moss -- 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

[android-developers] Re: Market problems again

2010-06-13 Thread Moss
They are aware of the issue: http://groups.google.com/group/android-discuss/browse_thread/thread/ecf38e196fca17c8 Thanks Romain for the quick reply!! On 13 jun, 11:14, YuviDroid yuvidr...@gmail.com wrote: I hope they fix this soon 2010/6/13 Tomáš Hubálek tom.huba...@gmail.com They

[android-developers] Re: SQLiteCursor on that has not been deactivated or closed

2010-06-18 Thread Moss
I always do like this: MediaDbAdapter mDbHelper = null; Cursor c = null; try { // Do you DB stuff } catch( Exception e) { // Something went wrong } // Close and cleanup if ( c != null ) { // You do not need to deactivate the cursor c.close(); } if(mDbHelper != null mDbHelper.isOpen())

[android-developers] Live Wallpaper Orientation Changes

2011-08-04 Thread Moss
), android:configChanges and android:screenOrientation seams to be unknown. Is there a way I can tell the LW system that I will handle any orientation changes by myself? Cheers, Moss -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Live Wallpaper Orientation Changes

2011-08-05 Thread Moss
Thx for the response. I'll investigate a bit more and post in the LW list :D On Aug 4, 11:44 pm, Adam Ratana adam.rat...@gmail.com wrote: Hi Moss, there is a google group called GLWallpaperService around an open source OpenGL WallpaperService implementation, you might want to check it out