[android-developers] saving applications state

2009-12-02 Thread and.pradeep
Hi, I am working with the saving an applications state. I am using onSaveInstanceState(Bundle savedInstanceState) to save state. In onCreate(Bundle savedInstanceState), I always get savedInstanceState as null and onRestoreInstanceState(Bundle savedInstanceState) is never called even. According

[android-developers] Right gravity and hint in EditText is making hint disappear

2009-11-01 Thread and.pradeep
Hi, I am trying to apply RIGHT gravity to EditText(google search bar) with hint and setSingleLine property to true but hint is disappearing. Have I missing something? below is the code EditText mEditText = new EditText(this); mEditText.setGravity(Gravity.RIGHT);

[android-developers] does android provides API for muiti tap?

2009-09-23 Thread and.pradeep
How to achieve multi tap for 3x4 virtual keyboard? Regards Pradeep --~--~-~--~~~---~--~~ 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

[android-developers] sdk for windows from source code

2009-08-11 Thread and.pradeep
how to build the sdk for windows from android source code? Regards Pradeep --~--~-~--~~~---~--~~ 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] arabic softkeyboard bidi problem

2009-07-15 Thread and.pradeep
In softkeyboard I am getting arabic keys and I am able to enter stings from right to left but the text is appearing on Left side of the editor. Is it problem with the font? since Hebrew is working fine. also if I just try to display arabic text using arabic font set using setTypeface(font) the

[android-developers] Re: how to set font for softkeyboard?

2009-07-13 Thread and.pradeep
Thanks for reply but how set set font for the IME? On Jul 12, 8:39 pm, Dianne Hackborn hack...@android.com wrote: You can't customize it from an application, the user needs to select what IME they want to use. On Sun, Jul 12, 2009 at 6:16 AM, and.pradeep and.prad...@gmail.com wrote: how

[android-developers] chinese keyboard

2009-07-13 Thread and.pradeep
How to set font for a IME? if i want it to be in chinese? --~--~-~--~~~---~--~~ 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

[android-developers] Re: how to set font for softkeyboard?

2009-07-13 Thread and.pradeep
, and.pradeep and.prad...@gmail.com wrote: Thanks for reply but how set set font for the IME? On Jul 12, 8:39 pm, Dianne Hackborn hack...@android.com wrote: You can't customize it from an application, the user needs to select what IME they want to use. On Sun, Jul 12, 2009 at 6:16 AM

[android-developers] Re: Help to develope keyboard driver!!!

2009-07-13 Thread and.pradeep
for software keyboard http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html On Jul 13, 11:09 am, Ulzii ter...@gmail.com wrote: I am a Mongolian developer and I need to create a Mongolian crylic letter keyboard driver for typing Mongolian text. How can I

[android-developers] how to set font for softkeyboard?

2009-07-12 Thread and.pradeep
how can I customize softkeyboard to use perticular font other than English language. --~--~-~--~~~---~--~~ 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] 3D modeling library for Opengles in Android

2009-03-12 Thread and.pradeep
Hi, Is there any 3D modeling library for Opengles that can be used in Android. Pradeep --~--~-~--~~~---~--~~ 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] 3D Rendering Library

2009-03-11 Thread and.pradeep
Hi, Is Vincent3d Rendering Library or any other library supports OpengGLES 1.1 in Android for drawing 3D graphics . or is there any other libraried available? Regards Pradeep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: OpenGL texture is upside down

2009-02-25 Thread and.pradeep
fill texture buffer starting from upper right coordinate, u would find it right. On Dec 29 2008, 5:33 am, Tom H tomhi...@gmail.com wrote: Hello.  I'm trying to map atextureon a surface, but it's showing up inverted (upside down).  It works correctly in WindowsOpenGL.  Here are the relevant

[android-developers] how to stretch texture

2009-02-25 Thread and.pradeep
hi, i am applying texture(jpg) to a Quad and drawing using triangles. but I am not getting the texture stretched in the quad but copies of the texture as tiles are filling the quard. what should i do to get the texture stretched to the quad?

[android-developers] backgroung setting in OpenGLES

2009-02-19 Thread and.pradeep
hi, I am writting opengl app using GLSurgfaceView given in API demos. I create a rectangle and added texture but then drawframe in renderer is called in a loop i,e it is redrawing it even if there is no changes. so what should i do to? how to set background

[android-developers] write to system directory

2009-02-09 Thread and.pradeep
Is it possible to write data or create folder in system directory like /system/media/audio/alarms. i.e other than our respective package. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: fileobserver

2009-02-05 Thread and.pradeep
what if I have to observe 2 or more folders (or paths)? even then threads are not required? how to register callbacks? On Feb 4, 11:03 pm, Dianne Hackborn hack...@android.com wrote: You don't need to create any threads to use FileObserver -- it is callback-based. On Tue, Feb 3, 2009 at

[android-developers] Re: fileobserver

2009-02-05 Thread and.pradeep
thanks solved it. instead of creating in separate threads i did it in single thread by creating an instance of fileobserver for each directory and calling startwatching(); in a loop. On Feb 4, 11:03 pm, Dianne Hackborn hack...@android.com wrote: You don't need to create any threads to use