Re: [android-developers] Re: Blocked my UI thread by background service

2012-11-10 Thread Rajan Thakrar
hi, Nitin thanx for the suggestion, but i know 1 min. is very costly for battery life , right now my app is in testing face that is why i used 1 min. after that i'll use 5 to 10 min. On Sat, Nov 10, 2012 at 12:52 PM, Nitin Sethi sethi.5...@gmail.com wrote: You issue aside, listening for GPS fix

[android-developers] Is is possible to have 2 settings files in a live wallpaper?

2012-11-10 Thread MobileVisuals
Is there any way to have 2 settings.xml files in a live wallpaper? Is it then possible to switch between these settings files in any way? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Is is possible to have 2 settings files in a live wallpaper?

2012-11-10 Thread 庞绪瑞
2012/11/10 MobileVisuals eyv...@astralvisuals.com Is there any way to have 2 settings.xml files in a live wallpaper? Is it then possible to switch between these settings files in any way? -- sorry i don't have idea! You received this message because you are subscribed to the Google Groups

[android-developers] Principles of Custom Layouts with code snippets

2012-11-10 Thread Satya Komatineni
Here are some notes and code samples for implementing custom layouts like a flow layout http://satyakomatineni.com/item/4359 This covers *** Inherit from ViewGroup Override OnMeasure Use a pencil and paper to figure out your algorithm Use ViewGroup.measureChild(). Don't directly

[android-developers] How to display Tifinagh characters on android emulator?

2012-11-10 Thread Osiris
How to display Tifinagh characters on android emulator? i tried this method: TextView tv=(TextView)findViewById(R.id.font); Typeface face=Typeface.createFromAsset(getAssets(),fonts/MZTIFIYU.TTF); tv.setTypeface(face); but i still see boxes instead of characters thank you in

Re: [android-developers] How to display Tifinagh characters on android emulator?

2012-11-10 Thread Mark Murphy
Either: -- Your font lacks the appropriate glyphs, or -- Your font is incompatible with Android See: http://stackoverflow.com/questions/13288182/custom-font-not-working-on-android/13289148#13289148 On Sat, Nov 10, 2012 at 8:51 AM, Osiris ziridm...@gmail.com wrote: How to display Tifinagh

[android-developers] Re: 3D game engine integration in the android framework

2012-11-10 Thread Diogo Henrique
I'd use http://unity3d.com/ Em sexta-feira, 9 de novembro de 2012 14h57min37s UTC-2, sebastian_bugiu escreveu: I have created a 3D game engine written in java for Android. It is based on the Ogre renderer and features - a complete OpenGL ES 2.0 multithreaded renderer - sound support

[android-developers] Re: 3D game engine integration in the android framework

2012-11-10 Thread sebastian_bugiu
Unity is good but it's not free. On Saturday, November 10, 2012 4:00:33 PM UTC+2, Diogo Henrique wrote: I'd use http://unity3d.com/ Em sexta-feira, 9 de novembro de 2012 14h57min37s UTC-2, sebastian_bugiu escreveu: I have created a 3D game engine written in java for Android. It is

[android-developers] Advice for a strategic game map

2012-11-10 Thread Thierry Legras
Hi, I am starting the development of a strategy game. For that I would like to develop an interactive galaxy map with objects (basically planets, spaceships). Note this would NOT be a real time game, but a turn by turn game. What is the best way to start knowing I would like a typical mapview

[android-developers] RTMP/RTP Library for Video

2012-11-10 Thread Kevin Anthony
I need to send RTMP or RTP streams from an android phone to a services. I was wondering if there was any library that handled this well Thanks Kevin Anthony -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Application onCreate called more than once?

2012-11-10 Thread Craig
I received an error because I'm doing something (init'ing ACRA) in my overridden Application class' onCreate, and I expected this method to be called only once. I think I have a clue as to what is happening - I see multiple logcat lines like: Force stopping package for my package close

[android-developers] Question About Form Design

2012-11-10 Thread Mark Phillips
Is it considered poor design to make a form in two columns, with a test field identifier on the left and an empty field on the right? EditTexts have a handy hint, but the hint is not needed if there us a TextField next to the EditText. However, Spinners don't have anything like a hint, so they