[android-developers] Plugin interface to Google Play Game Services against TOS?

2013-05-19 Thread 8DashP
Hi All, I use the Shiva3d game engine to develop android games. I like the look of the new Game Services for leaderboards etc, and was thinking of writing a generic Shiva plugin so others could easily add Game Services to their Shiva code, which uses a high level LUA type language, instead of

[android-developers] attach remoteviews from service to viewgroup inside activity (not widget)

2013-05-19 Thread miten
Hi, I have activity with linearlayout as viewgroup. I have service which using aidl interface provides remoteviews with pending intents. The activity as client binds to service and received the remoteviews. Now I do not know what to do show that I can have the remoteviews show up in

[android-developers] HELP

2013-05-19 Thread Abhishek Soni
Damn It! I have a signed application stored in a folder plus the key I used to sign it. Fortunately, they e were in my android device. I've accidently deleted my workspace. How can I get my Project back? I have the apk file as well it's key. -- -- You received this message because you are

[android-developers] Re: attach remoteviews from service to viewgroup inside activity (not widget)

2013-05-19 Thread Piren
You mentioned apply, invalidate and forcelayout... you never mentioned you actually added the view to the activity content... you did do that, right? On Sunday, May 19, 2013 5:54:16 PM UTC+3, miten wrote: Hi, I have activity with linearlayout as viewgroup. I have service which using aidl

[android-developers] Re: HELP

2013-05-19 Thread Piren
The key means nothing.. thats for signing the app, not for encrypting ityou can always extract the sources from the APK regardless of the key (google how to extract sources from an apk), but even if you didnt obfuscate it before, the code would not be the same as you had before... there

[android-developers] rendering international text into GL texture with correct line breaks

2013-05-19 Thread Latimerius
Hello, I'm looking into localising an OpenGL app into several languages. I'm not too worried about short strings like button labels, however the welcome screen contains a paragraph or two of text and the tutorial has a couple of 2-3 lines text strings. Currently, they are pre-rendered and

[android-developers] Need Feedback on this new game

2013-05-19 Thread Jaxily
Hello Fellow developers out there. Please let me know what you think of my new game, much appreciated, thanks https://play.google.com/store/apps/details?id=com.jaxily.fatpig -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] rendering international text into GL texture with correct line breaks

2013-05-19 Thread Romain Guy
One way to do this is to create a TextView, call measure() then layout() on it and then call its draw() method to draw into a Bitmap. This will take care of all the breaking, BiDi, etc. Note that TextView uses the Paint APIs under the hood to measure text. On Sun, May 19, 2013 at 10:55 AM,

[android-developers] Does anybody know how to use session cookies with Volley?

2013-05-19 Thread gnugu
Hi, I'm using the new com.android.volley library. I need to attach a session cookie when doing a request. Does anybody know how to deal with this in Volley? Thanks. -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] BTLE!

2013-05-19 Thread Andros
https://lh3.googleusercontent.com/-6L6UcmrziCc/UZlHCgIPy7I/AGM/VSrKTrg8GS0/s1600/sadAndroid.PNG -- -- 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

Re: [android-developers] rendering international text into GL texture with correct line breaks

2013-05-19 Thread Latimerius
Thanks a lot Romain. I hoped there would be a way to leverage somehow the standard View machinery. I couldn't find it as admittedly, I'm not very experienced with the standard UI toolkit. On Sun, May 19, 2013 at 9:27 PM, Romain Guy romain...@android.com wrote: One way to do this is to create

Re: [android-developers] rendering international text into GL texture with correct line breaks

2013-05-19 Thread Romain Guy
It's pretty easy. If you want the text to break, use the MeasureSpec AT_MOST X px for the width (where X is the maximum width in pixels you want your texture to be) and UNSPECIFIED 0 px for the height. On Sun, May 19, 2013 at 3:39 PM, Latimerius l4t1m3r...@gmail.com wrote: Thanks a lot Romain.

[android-developers] Re: Android widget layout doesn't change after rotation

2013-05-19 Thread zhiyazw
The example uses the way of creating extending class, I know that could accomplish this, I have statemented that I want to see if somebody know a light way. The rotating method is contained in the layout xml. Thank you anyway to pay your attention . On Monday, May 13, 2013 3:05:05 PM UTC+8,

Re: [android-developers] HELP

2013-05-19 Thread TreKing
On Sun, May 19, 2013 at 10:42 AM, Abhishek Soni abbie27s...@gmail.comwrote: I've accidently deleted my workspace. How can I get my Project back? Look in your OS's Trash or Recycle Bin ... ? -