[android-developers] aggregating Play store statistics for multiple apps

2014-10-22 Thread AndyD
I'm working with a client that has a large number of apps published to the Play store and I'd like to get aggregated statistics like daily user installs/uninstalls and total installs, across all apps. Right now the only way to do this seems to be to export each app's stats into a CSV file and

[android-developers] Re: RelativeLayout containing ViewStub doesn't position the inflated stub correctly

2012-11-09 Thread AndyD
Argh, nevermind, figured it out. When I moved the stubbed-out view to its own file and replaced it with the stub in the RelativeLayout XML, I failed to migrate the android:layout_alignParentBottom to the stub declaration. Sigh. On Friday, November 9, 2012 5:34:32 PM UTC-5, AndyD wrote

[android-developers] Re: RelativeLayout containing ViewStub doesn't position the inflated stub correctly

2012-11-09 Thread AndyD
Clarifying one sentence On Friday, November 9, 2012 4:52:34 PM UTC-5, AndyD wrote: > > I've got a RelativeLayout declared via XML that contains a regular View > and a ViewStub. The regular View specifies > android:layout_above="@+id/the_view_stub". In my Fragme

[android-developers] RelativeLayout containing ViewStub doesn't position the inflated stub correctly

2012-11-09 Thread AndyD
I've got a RelativeLayout declared via XML that contains a regular View and a ViewStub. The regular View specifies android:layout_above="@+id/the_view_stub". In my Fragment's onCreateView(), I'm first inflating the RelativeView, then conditionally inflating the stub. However, the result is t

[android-developers] Re: Android features for aging Baby Boomers

2012-09-07 Thread AndyD
I haven't tried it myself, but this app ("Big Font") might be what you're looking for: https://play.google.com/store/apps/details?id=com.a0soft.gphone.bfont On Thursday, September 6, 2012 2:19:28 PM UTC-4, bobbi wrote: > > While enlarging/shrinking images is inherent in Android, not so is the >

[android-developers] Re: SQLite concurrency

2011-10-11 Thread AndyD
On Oct 11, 9:52 am, Chris wrote: > While its not as bulletproof as an onDestroy or onTerminate, for various > reasons I keep a reference count on the number of activities my app opens.   > When the reference count goes to zero I cleanup stuff on the app scope, > assuming that the Application co

[android-developers] Re: word wrapping

2011-09-14 Thread AndyD
es, then Java->Code Style->Formatter. Create a new profile (or use a built-in one), then click Edit. Most of the settings you're looking for are in the "Line Wrapping" tab, but there are a few more useful ones in the "Comments" tab. -AndyD On Sep 13, 4:22 pm, bob wro

[android-developers] Re: View in Google+ Application

2011-08-19 Thread AndyD
Also here: http://stackoverflow.com/questions/6806880/how-to-create-a-ui-like-the-new-market-or-google-plus/6807264 -AndyD -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: View in Google+ Application

2011-08-19 Thread AndyD
There is some info about this here: http://stackoverflow.com/questions/6802770/what-view-component-does-the-google-plus-app-stream-use -AndyD On Aug 18, 4:37 pm, charlie babitt wrote: > Hallo! > > Yesterday I installed the Google+ Application (for the Android 2 > series) and fo

[android-developers] Re: how best to access string resources from AsyncTask.doInBackground

2011-08-09 Thread AndyD
On Aug 9, 10:28 am, Streets Of Boston wrote: > Instead of holding on to the Activity in the AsyncTask, just hold on to its > application-context: Bingo, that's the kind of thing I was looking for. Thanks! -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] Re: how best to access string resources from AsyncTask.doInBackground

2011-08-09 Thread AndyD
On Aug 9, 8:36 am, TreKing wrote: > I was thinking more along the lines of passing them as arguments to > execute(), but I guess that works. > > --- > -- > TreKing

[android-developers] Re: how best to access string resources from AsyncTask.doInBackground

2011-08-09 Thread AndyD
On Aug 9, 2:46 am, rich friedel wrote: > I don't know the performance hit but you can access your resource like this: > > String s = TheParentActivity.this.getString( R.string.your_string_resource > ); Well, I don't want to access the parent activity from doInBackground, since it might not be t

[android-developers] Re: how best to access string resources from AsyncTask.doInBackground

2011-08-09 Thread AndyD
On Aug 8, 10:57 pm, TreKing wrote: > Get them first, in the UI thread, then pass the actual String to the > AsyncTask ... ? > > --- > -- > TreKing - Ch

[android-developers] how best to access string resources from AsyncTask.doInBackground

2011-08-08 Thread AndyD
So, as I understand it, accessing the Activity object is a bad idea from inside an AsyncTask's doInBackground() method because, due to rotation or other configuration changes, the Activity that created the AsyncTask can go away and be replaced by another one while doInBackground() is running. Howe