Re: [android-developers] Re: How to start again if some third party task killer has killed my app ?

2013-03-22 Thread Amit Dwivedi
The question is not limited only about force close errors. It is more about the sudden death of the application which can happen because of so many reasons. In which I want to handle Force close when user goes to the *Settings - Applications - my App* and clicks *Force Close* and When some task

[android-developers] Re: SlidingDrawer

2013-03-22 Thread Pent
Has anyone figured out how to make it open partially - ie not snap open all the way? I implemented that a few years ago, looking at the layout seems like the height of the SlidingDrawer view is the limited. Pent -- -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] How to solve the issue with Dalvik compiler limitation on 64K methods?

2013-03-22 Thread Ricardo Amaral
That's what I keep being told but how can I still use Eclipse and execute debug/run builds within the IDE and still run Proguard? -- -- 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: Translate Animation doesn't work with samsung's S3

2013-03-22 Thread Ansh
This has been fixed see my comment in the same stackoverflow link. On Friday, 22 March 2013 11:28:00 UTC+5:30, Ansh wrote: Hi guys , i am doing translate animation where i need to move my view( which is at the center of the screen ,but not exactly ) upward so that it can fit to the

Re: [android-developers] How to solve the issue with Dalvik compiler limitation on 64K methods?

2013-03-22 Thread Mark Murphy
I presume that there's a recipe for that, though I do not know what it is. The right answer to your problem (the application architecture should probably be restructured) is one you discarded. Any solution to work around this problem temporarily may come with side effects, such as having to drop

[android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. On Thursday, 21 March 2013 18:21:44 UTC+5:30, skink wrote: miten

Re: [android-developers] Re: zygote preloading jars

2013-03-22 Thread Mark Murphy
On Fri, Mar 22, 2013 at 7:55 AM, miten imi...@yahoo.com wrote: It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. That is because your emulator is not running your own

[android-developers] Re: zygote preloading jars

2013-03-22 Thread skink
miten wrote: Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. you have to modify

[android-developers] Re: zygote preloading jars

2013-03-22 Thread skink
skink wrote: miten wrote: Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. you have to modify

[android-developers] Nexus 7 Tilapia vs Grouper

2013-03-22 Thread Nathan
From a developer's perspective, are there difference on the Nexus 7 Tilapia vs Grouper? I've already discovered that the Tilapia is the 3G version. So there are at least some But if, say, one user claims that the compass is sometimes off by 90 or 180 degrees, or that files/data disappear,

[android-developers] Re: SlidingDrawer

2013-03-22 Thread Nathan
On Friday, March 22, 2013 12:38:05 AM UTC-7, Pent wrote: Has anyone figured out how to make it open partially - ie not snap open all the way? I implemented that a few years ago, looking at the layout seems like the height of the SlidingDrawer view is the limited. I don't mean

[android-developers] Is there a way to dismiss the Contextual Action Bar (CAB) menu?

2013-03-22 Thread Marty Rehder
I have an app with a series of files in being shown via an Activity. Each file has a checkbox. If the user clicks any of the chedckboxes, I bring up the CAB menu for the user to operate on the file. My onClickListener starts things, and, I was hoping, could dismiss the CAB if the checkboxes are

Re: [android-developers] Is there a way to dismiss the Contextual Action Bar (CAB) menu?

2013-03-22 Thread Mark Murphy
Call finish() on the ActionMode when you want to manually dismiss it. On Fri, Mar 22, 2013 at 3:56 PM, Marty Rehder martyg...@gmail.com wrote: I have an app with a series of files in being shown via an Activity. Each file has a checkbox. If the user clicks any of the chedckboxes, I bring up

[android-developers] Re: MediaMetadataRetriever extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE) gets null

2013-03-22 Thread Marty Rehder
For others who may be interested, I ended up implementing a 3rd party library MyID3 http://www.fightingquaker.com/myid3/ Works well enough. A shame the real Android tools doesn't read the exact same data/same file like this library can. On Thursday, March 21, 2013 3:47:19 PM UTC-5, Marty

[android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, I already modified the platform.xml as below: !-- This is a list of all the libraries available for application code to link against. -- library name=android.test.runner file=/system/framework/android.test.runner.jar / library name=javax.obex

Re: [android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, You are suggesting that custom ROM is the only way to get apks share libraries ? I would like to see some simplified article showing how to achieve it in addition to google link you provided before I start in this custom rom direction. Regards, msm. On Friday, 22 March 2013 17:38:41