[android-developers] Google Play Games Services for Unity issues

2016-03-19 Thread Robert Mitchell
s pointing to them correctly. Does anyone have any idea how to fix this, I dont mind if I have to just remove the google play functionality all together as long as I can get it to compile I dont mind. I hope you will be able to help, thank you in advance Robert Mitchell (robert-mitchell-epor

[android-developers] How can I download Android Sdk platform-tools without the pain?

2015-12-16 Thread seb mitchell
Hi just wondering if there is a better way to download the Android/Sdk/platform-tools files. Just having a play with http://flutter.io/ via https://atom.io/packages/dartlang editor and got an error about adb, on my debian jessie, being out of date. Also the other android tools are required to

Re: [android-developers] Re: How to detect application launch and shutdown events?

2013-08-23 Thread Randall Mitchell
http://developer.android.com/reference/android/app/Application.html#onTerminate() ... reads: "This method is for use in emulated process environments. It will never be called on a production Android device, where processes are removed by simply killing them; no user code (including this callba

Re: [android-developers] Jelly Bean Crash with Bitmap Recycle "Sorry, an error has occurred: bitmap is recycled"

2012-07-15 Thread Craig Mitchell
Ah, yes, thanks Romain, that was it! Cheers. On Sunday, 15 July 2012 06:45:58 UTC+10, Romain Guy (Google) wrote: > > Ah, this is an interesting bug that we ran into ourselves. > createScaledBitmap() can return the *same* bitmap if the scaled copy would > have the same dimensions as the original

[android-developers] Where to start?

2012-07-14 Thread Mitchell Just
Hi guys, I'm trying to put together a fairly simple application, but I'm getting a little overwhelmed at the moment. I've read through most of the Google tutorials, and a heap of stackoverflow threads, but I just seem to be going around in circles. Basically I have a Java application running o

[android-developers] Re: Drawable is not drawn after setDrawableByLayerId

2012-07-13 Thread Randall Mitchell
Since this hits the top of my search list for this issue, I thought I would give this thread an answer... >From what I can tell, LayerDrawable. setDrawableByLayerId is useless on lots of devices (strangely works well on Nexus S). I suggest building a new LayerDrawable instead. On Wednesday, F

[android-developers] Re: How to determine screen resolution programmatically

2012-07-10 Thread Randall Mitchell
Since this hit high in google search I thought I'd update it with how I currently get screen width. I am not saying its the best way (maybe though)... but Display.getWidth is deprecated so Philips code from 2008 should not be used. Cheers. @Override public void onActivityCreated(Bund

[android-developers] Re: Purchase App Source Code

2012-07-01 Thread Mitchell
Well I never been on Android Market before. On Jun 30, 9:23 am, Nobu Games wrote: > On Thursday, June 28, 2012 5:07:13 PM UTC-5, Mitchell wrote: > > > The email stated previous account violations. I'm thinking this dev > > may have been suspended previously. Can anyone gi

[android-developers] Re: Purchase App Source Code

2012-06-29 Thread Mitchell
Obviously a drawing app should not have any problems. On Jun 29, 5:37 pm, Uwe Maurer wrote: > What kind of app was it ? > > > > On Friday, June 29, 2012 12:07:13 AM UTC+2, Mitchell wrote: > > > Hi, > > > I purchased app source code from a developer changed a phe

[android-developers] Re: Purchase App Source Code

2012-06-29 Thread Mitchell
It was a drawing app. On Jun 29, 5:37 pm, Uwe Maurer wrote: > What kind of app was it ? > > > > On Friday, June 29, 2012 12:07:13 AM UTC+2, Mitchell wrote: > > > Hi, > > > I purchased app source code from a developer changed a phew things and > > publis

[android-developers] Purchase App Source Code

2012-06-29 Thread Mitchell
pened? Best Regards Mitchell -- 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@googlegroups.com To unsubscribe from this group, send email to android-deve

[android-developers] Re: Bizarre HorizontalScrollView behavior

2011-11-24 Thread Petrea Mitchell
Trying to get at least some minimal layout working, I've now got a vertical LinearLayout inside a ScrollView for the PopupWindow layout. Same problems, only along the vertical axis. Could this actually be a PopupWindow problem? Is it a known bug? -- You received this message because you are subsc

[android-developers] Bizarre HorizontalScrollView behavior

2011-11-22 Thread Petrea Mitchell
I have a bafflingly simple problem. Inside a PopupWindow, I'm using a layout that goes like this: http://schemas.android.com/apk/ res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:fillViewport="true"> http://schemas.android.com/apk/

[android-developers] Re: Refresh Imageview PLEASE HELP killing me!

2011-04-03 Thread Craig Mitchell
You need to give control back to the EDT so it can draw the image. The for loop needs to be in a non EDT thread. On Apr 4, 3:01 pm, Noobs41bot wrote: > Ok so I have all the code in place to create a random degree of rotation > between a start and finish... works great... i have a progress bar t

[android-developers] Re: What's new in honeycomb?

2011-01-27 Thread Craig Mitchell
It depends on how your app is setup. Depending on how applications declare > > how they support multiple screens and densities the app might be boxed, > > scaled or simply fill the screen and rely on layout to look correct. > > > On Sun, Jan 9, 2011 at 6:09 PM, Craig Mitchell wrote

[android-developers] Re: What's new in honeycomb?

2011-01-10 Thread Craig Mitchell
:09 pm, Dianne Hackborn wrote: > On Mon, Jan 10, 2011 at 4:43 PM, Craig Mitchell wrote: > > > That is, no postage stamp in the middle like we did for apps > > > targeting prior to 1.6 that only ever thought about 480x320 > > > mdpi screens. > > That is what I wa

[android-developers] Re: What's new in honeycomb?

2011-01-10 Thread Craig Mitchell
> > > > > > > On Sun, Jan 9, 2011 at 6:36 PM, Romain Guy wrote: > > It depends on how your app is setup. Depending on how applications declare > > how they support multiple screens and densities the app might be boxed, > > scaled or simply fill the screen and rely

[android-developers] Re: What's new in honeycomb?

2011-01-09 Thread Craig Mitchell
And you all have done a fantastic job at that. However, I'm not a fan of boxing an app for large screens. I would much prefer an app to be expanded to the full screen size and look a little pixelated, then only take up a small section of the screen. ...apologies that this comment is off topic.