[android-developers] Re: Customize desktop icon

2009-02-11 Thread Romain Guy
1. No. 2. In a private database. Cupcake will move that database so any code that tries to modify it now will break soon. On Wed, Feb 11, 2009 at 3:56 AM, Joe_Booboo wrote: > > Hi, > > I have created several folders (Apps, Games, etc) on my G1 desktop. > > So my question are: > > 1) Is there a

[android-developers] Re: Customize desktop icon

2009-02-11 Thread dple...@googlemail.com
Hi Romain, will code like this work or be broken in Cupcake? : Uri uri = Uri.parse("content://" + android.provider.Settings.AUTHORITY + "/favorites"); ContentResolver cr = getContentResolver(); Cursor c = cr.query(uri, new String[] { "_id", "intent" }, null, null, null); thanks! On 11 Feb., 19

[android-developers] Re: Customize desktop icon

2009-02-11 Thread Romain Guy
It will break (it will have no effect.) On Wed, Feb 11, 2009 at 2:04 PM, dple...@googlemail.com wrote: > > Hi Romain, > > will code like this work or be broken in Cupcake? : > > Uri uri = Uri.parse("content://" + android.provider.Settings.AUTHORITY > + "/favorites"); > ContentResolver cr = getCo