[android-developers] Getting the list of supported devices - encoding problems

2015-09-23 Thread Simon Giddings
I wanted to obtain the list of supported devices and then automatically process them. I found this page : https://support.google.com/googleplay/android-developer/answer/6154891?hl=en However, the file is encoded as UCS2 Little endian. Is there a UTF-8 or unicode version available ? It is

Re: [android-developers] webview load page in background

2015-09-23 Thread TreKing
On Tue, Sep 22, 2015 at 2:44 AM, Jags wrote: > thanks, is it the only way ? > I don't know, probably not, but that's the first thing that came to mind. > i can not put it as content, because, there is already a visible content > (another list) i am replacing that content

Re: [android-developers] How to close the Existing Fragment

2015-09-23 Thread TreKing
On Tue, Sep 22, 2015 at 12:10 AM, weird0 wrote: > Could any one tell me how to close the existing fragment? Without a clearer explanation or some code, it's hard to help you. What do you mean by "close", for example? A fragment is not something that "closes".

Re: [android-developers] How to create a public static class

2015-09-23 Thread Lew
On Tuesday, September 22, 2015 at 8:14:00 AM UTC-7, Mark Phillips wrote: > > Java does not allow top level static classes, just inner static classes. > There is no such thing as an "inner static class" in Java. Nested classes are either inner or static, never both.