[android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-12 Thread bob
Is this mainly for freeing up space? If so, I would think the built-in "Sort by size" feature in Settings would probably be slightly more useful. On Tuesday, February 12, 2013 7:24:11 AM UTC-6, Bajrang Asthana wrote: > > We want to implement uninstall feature based on the apps usage. So f

Re: [android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-12 Thread Kristopher Micinski
You'll have to do this by polling the system every once a while, the system doesn't have any direct hooks to allow you to view these kinds of logs any other way, Kris On Tue, Feb 12, 2013 at 8:24 AM, Bajrang Asthana wrote: > We want to implement uninstall feature based on the apps usage. So for

[android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-12 Thread Bajrang Asthana
We want to implement uninstall feature based on the apps usage. So for instance if an app is not used since long time then we highlight so that user can know and uninstall it. -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-08 Thread bob
What exactly are you trying to do? On Wednesday, February 6, 2013 12:00:10 AM UTC-6, Bajrang Asthana wrote: > > Hi , > > I want to get a list of android applications on basis of rarely used. I am > not getting how can we access last run time of application. > > I thought it could be possible t

Re: [android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-08 Thread Kristopher Micinski
This will work except for logging processes running when the screen is off, of course (e.g., all those that read notifications), it depends how you define rarely used. kris On Fri, Feb 8, 2013 at 8:18 AM, Dan wrote: > > > On Thursday, February 7, 2013 12:12:34 PM UTC-5, Kristopher Micinski wrote

Re: [android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-08 Thread Dan
On Thursday, February 7, 2013 12:12:34 PM UTC-5, Kristopher Micinski wrote: > > Of course, the caveat here is that you're also going to waste a good > amount of battery. > > kris > > On Thu, Feb 7, 2013 at 10:30 AM, Nobu Games > > > wrote: > > This is pretty similar to the "battery optimiza

Re: [android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-07 Thread Kristopher Micinski
Of course, the caveat here is that you're also going to waste a good amount of battery. kris On Thu, Feb 7, 2013 at 10:30 AM, Nobu Games wrote: > This is pretty similar to the "battery optimization app" problem. Dan > suggests the proper API methods for querying what's running right now. In > or

[android-developers] Re: Get sorted list android applications on basis of rarely used

2013-02-07 Thread Nobu Games
This is pretty similar to the "battery optimization app" problem. Dan suggests the proper API methods for querying what's running right now. In order to track what's least used on the phone you need to keep track of what is used most. And keeping track means that you need to poll that data in r