[android-developers] Annunciator Bar not Screen-wide in Landscape Mode

2008-11-20 Thread Raktim Das
The annunciator bar (or device status bar) does not stretch up to the screen width in landscape mode. It's as wide as the portrait mode width. Any idea whether this behavior is changeable? --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] How to Change Toast Font?

2008-11-18 Thread Raktim Das
Hi, Anybody knows where the font properties for a Toast are derived from? Is there any way the properties, mainly the size, can be changed? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Problem with Service Permission

2008-11-11 Thread Raktim Das
Hi, I am using 0.9 beta SDK. I want to have a service defined within one application to be invokable from another. The application hosting the service has, in its manifest, the following inside the application tag: service android:name=.service.BackgroundService android:process=:remote

[android-developers] Re: Problem with Service Permission

2008-11-11 Thread Raktim Das
: The Intent you are making to bind to the service is trying to find a component in your own .apk, not the other. The last permission error you mention is because you need to explicitly request to use even your own permissions. On Nov 10, 9:31 pm, Raktim Das [EMAIL PROTECTED] wrote: Hi, I am

[android-developers] Re: Problem with Service Permission

2008-11-11 Thread Raktim Das
NOT use the name android.permission.  The namespaces android.* and com.android.* are reserved for the android platforms, and applications MUST NOT USE THEM. On Nov 11, 11:43 am, Raktim Das [EMAIL PROTECTED] wrote: Thanks a lot for analyzing the problem. First, my comment on your second point