[android-developers] Re: android market publish button does not work

2008-11-06 Thread samlu
I had the same problem on IE. Please use Google's web browser or Firefox. It should be ok. Sam On Nov 7, 10:03 am, sori [EMAIL PROTECTED] wrote: I finally got my application ready for distribution. I filled up all fields in the market upload page, then pressed Publish button. There is no

[android-developers] Re: OpenIntents supports 1.0r1 SDK?

2008-09-29 Thread samlu
I am interested in the compass sensor simulator part. I will wait for the binary release. Thanks for the update. Sam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] OpenIntents supports 1.0r1 SDK?

2008-09-28 Thread samlu
I cannot find such information, so I post here. Does anyone know that OpenIntents supports 1.0r1 SDK? --~--~-~--~~~---~--~~ 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: Announcement: Companies that announce Android support

2008-09-26 Thread samlu
If you are looking for Android shareware, or freeware, you should have a look at A0Soft (http://android.a0soft.com) As I know, there are developing Android applications. So far, two applications announced. aClock - world clock, alarm, analog clock, world map, currency calculation aDialCode -

[android-developers] [1.0r1] Are there any base64 encoding functions in 1.0r1?

2008-09-23 Thread samlu
I can find the encodeBase64() function from the org.apache.commons.codec.binary.Base64 package in 0.9r1. It seems that this package is removed from 1.0r1. Are there any base64 encoding functions available in 1.0r1? --~--~-~--~~~---~--~~ You received this message

[android-developers] [0.9r1] wrong timezone(DST) information for some cities

2008-09-09 Thread samlu
I found the DST information of TZ DB is incorrect. Here is an example. String strTZ = Asia/Taipei; TimeZone tz = TimeZone.getTimeZone(strTZ); Log.d(wc, strTZ + UTC= + tz.getRawOffset() / 1000 + DST= + tz.useDaylightTime()); The output is Asia/Taipei UTC=28800 DST=true As we know, there is

[android-developers] Re: how to change system timezone setting?

2008-09-08 Thread samlu
Thank Megha. The alarm.setTimeZone() works perfectively. On Sep 9, 3:30 am, Megha Joshi [EMAIL PROTECTED] wrote: Also, the recommended way to change timezone is through Settings app, which not not included in the current sdk .. For now you can use the following: AlarmManager alarm =

[android-developers] change timezone setting for system

2008-08-25 Thread samlu
I called TimeZone.setDefault() for changing system's timezone, but failed. Is there an API for me to change system's timezone? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: text color won't change for TextView.setEnabled(false)

2008-08-23 Thread samlu
, 10:01 am, samlu [EMAIL PROTECTED] wrote: This is the TextView object defined in layout file. TextView android:id=@+id/txtResults android:layout_width=fill_parent android:layout_height=fill_parent android:background=#A0 android:textColor=#FF / In addition, no theme specified

[android-developers] [v0.9 beta] text color won't change for TextView.setEnabled(false)

2008-08-22 Thread samlu
When I called setEnabled(false) for a TextView object on m5-rc15, the text color will be changed to gray (or dim). After switching to v0.9, it seems that all view object won't change color when I call setEnabled(false). Does anyone know how to fix this problem?

[android-developers] [v0.9 beta] SystemClock.setCurrentTimeMillis() failed

2008-08-22 Thread samlu
I am using v0.9 beta SDK and got the following warning when I call SystemClock.setCurrentTimeMillis() WARN/SystemClock(1000): Unable to open alarm driver: Permission denied Does anyone know which permission should be specified? --~--~-~--~~~---~--~~ You received

[android-developers] v0.9 beta - SystemClock.setCurrentTimeMillis() failed

2008-08-22 Thread samlu
I am using v0.9 beta SDK, got the following warning when I call SystemClock.setCurrentTimeMillis() WARN/SystemClock(516): Unable to open alarm driver: Permission denied Does anyone know which permission should be specified? --~--~-~--~~~---~--~~ You received this

[android-developers] Re: [v0.9 beta] text color won't change for TextView.setEnabled(false)

2008-08-22 Thread samlu
the default theme. Sam On Aug 23, 5:29 am, Jeff Hamilton [EMAIL PROTECTED] wrote: How did you define the TextView in your layout file? Are you using one of the standard textAppearance values? -Jeff On Fri, Aug 22, 2008 at 2:17 AM, samlu [EMAIL PROTECTED] wrote: When I called setEnabled(false