[android-developers] Re: How do I get the source code of Android 1.1_r1?

2009-04-20 Thread Marek Urbaniak
On Mar 28, 9:12 pm, Jean-Baptiste Queru j...@android.com wrote: The exact source code for 1.1 is not available. Why? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: How do I get the source code of Android 1.1_r1?

2009-04-23 Thread Marek Urbaniak
Thanks for the answer. On Apr 20, 7:42 pm, Jean-Baptiste Queru j...@android.com wrote: We focused our energy on getting thesourcecode for 1.5 available. JBQ On Sun, Apr 19, 2009 at 5:30 AM, Marek Urbaniak marek.urban...@gmail.com wrote: On Mar 28, 9:12 pm, Jean-Baptiste Queru j

[android-developers] Since Android 2.0 the phone number in the emulator became null - how to set it?

2009-11-01 Thread Marek Urbaniak
It the earlier versions of Android SDK the emulator had the set phone number. Visible in the phone settings and accessible to applications through the TelephonyManager.getLine1Number method. In Android SDK 2.0 it is not set. How to set it? -- You received this message because you are subscribed

Re: [android-developers] Re: Since Android 2.0 the phone number in the emulator became null - how to set it?

2009-11-02 Thread Marek Urbaniak
this on the emulator, not a real phone. On Nov 1, 3:00 pm, Marek Urbaniak marek.urban...@gmail.com wrote: It the earlier versions of Android SDK the emulator had the set phone number. Visible in the phone settings and accessible to applications through the TelephonyManager.getLine1Number method

[android-developers] Package of R.java

2010-01-01 Thread Marek Urbaniak
Is it possible to instruct Eclipse and Ant to have a R.java file generated in the package com.example whilst the package declared in an AndroidManifest.xml file is com.example.d? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Package of R.java

2010-01-01 Thread Marek Urbaniak
To share code for a normal and a demo version of an application. On Jan 1, 8:27 pm, jotobjects jotobje...@gmail.com wrote: I don't know (probably not?)  but what is your objective for wanting that capability? On Jan 1, 11:01 am, Marek Urbaniak marek.urban...@gmail.com wrote: Is it possible

[android-developers] Remove window title after setting content

2010-01-13 Thread Marek Urbaniak
Is it possible to remove a title bar in a window after content has been set? Calling the method Activity.requestWindowFeature (Window.FEATURE_NO_TITLE) ends up in the exception: requestFeature() must be called before adding content. -- You received this message because you are subscribed to the

Re: [android-developers] Default orientation of device

2010-12-29 Thread Marek Urbaniak
There is such a concept in Android. Check e.g.,: http://android-developers.blogspot.com/2010/09/brace-for-future.html(sections where Motorola Charm and Flipout are mentioned) I could not believe there is no API call to check device natural orientation. I posted this question on Stack Overflow

[android-developers] Numbers aligned to the right in EditText

2010-03-16 Thread Marek Urbaniak
Is it possible to align text in the EditText widget to the right? I do not see any such a property. Am I missing it or maybe there is no such an option. -- 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] Re: Numbers aligned to the right in EditText

2010-03-17 Thread Marek Urbaniak
It works. Thank you very much Grace. On 17 Mar, 06:19, grace grace.a...@wipro.com wrote: u can set the gravity of the view(edittext ) toright. On Mar 16, 2:17 pm, Marek Urbaniak marek.urban...@gmail.com wrote: Is it possible to align text in the EditText widget to theright? I do not see