[android-developers] Re: Resource not found

2010-10-28 Thread Surfer
d medium density class by default. > > On Oct 27, 6:11 am, Surfer wrote: > > > Hi > > >   Hi, i have an app that runs on some 1.5 devices and is preloaded. I > > have now created an update for my app. I have just tested upgrade and > > it has an issue. I'd l

[android-developers] Resource not found

2010-10-27 Thread Surfer
Hi Hi, i have an app that runs on some 1.5 devices and is preloaded. I have now created an update for my app. I have just tested upgrade and it has an issue. I'd like to mention that my upgraded version has more string/drawable resources than the old one. What happens is when i get to the packag

[android-developers] Re: Application installation

2010-08-30 Thread Surfer
> On 30 August 2010 09:58, Surfer wrote: > > > As i mentioned above my app is a system app, it is registered under / > > data/system/packages.xml with system="true". > > But you noticed that every other package is listed in that file too, right? > > >

[android-developers] Re: Application installation

2010-08-30 Thread Surfer
27;t launch the installer. On Aug 28, 11:14 pm, Dianne Hackborn wrote: > You can do it if you are pre-installed on the phone as part of the system. >  Otherwise you can not. > > > > On Sat, Aug 28, 2010 at 8:17 AM, Surfer wrote: > > Why not? Android Market does it.. > &

[android-developers] Re: Application installation

2010-08-28 Thread Surfer
Why not? Android Market does it.. On Aug 26, 2:50 pm, "{ Devdroid }" wrote: > On 26 August 2010 14:34, Surfer wrote: > > > works. What i would like to do is perform asilentinstall, > > You should not be able to do so. -- You received this message because you

[android-developers] Application installation

2010-08-26 Thread Surfer
Hi I am trying to install an application from within another application. I know the usual way it to launch an intent with Intent.ACTION_VIEW, present it to the user and let him agree and this works. What i would like to do is perform a silent install, with no user interaction. I'd like to menti

[android-developers] Gallery display issue

2010-07-08 Thread Surfer
Hi, i've created a gallery, using the hello gallery tutorial from here: http://developer.android.com/guide/tutorials/views/hello-gallery.html . It's working fine but i noticed running on an android 1.6 WVGA(800) emulator the gallery is not displayed correctly. Setting layout params to 70, 70 my gal

[android-developers] Re: Dialog is leaked on orientation change

2010-06-25 Thread Surfer
e, so onresume never recreates it cause it's already there, the leak error as well. Any ideas? On Jun 24, 3:21 am, Brad Gies wrote: > You should dismiss it in OnPause and recreate it in OnResume if you > still want it. > > On 23/06/2010 6:02 AM, Surfer wrote: > > > >

[android-developers] Extracting data with aapt

2010-06-23 Thread Surfer
Hi there. I would like to extract some data from android manifest of an apk. Using "aapt d badging my-application.apk" works but only partially, i can get most of the info i need but i'm still missing these: - if supports-screens has anydensity set to true or false - if the apk includes native libr

[android-developers] Dialog is leaked on orientation change

2010-06-23 Thread Surfer
Hi, built a simple app that displays an alertDialog with two buttons. The problem is it's not getting dismissed when i change orientation. After change i get a leak warning on debugger and the dialog appears twice(pressing back hides the first dialog, only a second back dismisses it completely). An