Re: [android-developers] Got 12 Google Wave invitations to use, let me know if you need

2009-11-09 Thread Bob Cai
Hi Dave,

Can you please send me one to caibo...@gmail.com

Thanks,
Bob

On Mon, Nov 9, 2009 at 11:12 AM, dave  wrote:

> Hi all,
>
> I just got 12 Google Wave invitations to use, please let me know if
> you need one.
>
> Cheers.
>
> Dave
>
> --
> 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 unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Preference and type

2009-11-08 Thread Bob Cai
Done!
Although there's no INT type Preference. Here's the way to make sure that
the input for EditTextPreference is a number.

EditText etText =
(EditText)((EditTextPreference)findPreference("NUM_TEXT")).getEditText();
etText.setKeyListener(DigitsKeyListener.getInstance());



On Sat, Nov 7, 2009 at 10:23 PM, Bob Cai  wrote:

> I am experiencing the same issue. My app. requires an INT number returned
> from EditTextPreference, any way to make sure that the input for
> EditTextPreference is an INT before it returns to app.?
>
>
> On Fri, Nov 6, 2009 at 8:07 AM, Pierre  wrote:
>
>> With CheckBoxPreference and EditTextPreference, there are only boolean
>> and String preferences.
>> EditTextPreference support input filter, but always save as String.
>> I think we need other save type like : int, float, double, etc ...
>>
>> A native DialogPreference with slide-bar could be great too.
>>
>> --
>> 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 unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>
>
>

-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Preference and type

2009-11-07 Thread Bob Cai
I am experiencing the same issue. My app. requires an INT number returned
from EditTextPreference, any way to make sure that the input for
EditTextPreference is an INT before it returns to app.?

On Fri, Nov 6, 2009 at 8:07 AM, Pierre  wrote:

> With CheckBoxPreference and EditTextPreference, there are only boolean
> and String preferences.
> EditTextPreference support input filter, but always save as String.
> I think we need other save type like : int, float, double, etc ...
>
> A native DialogPreference with slide-bar could be great too.
>
> --
> 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 unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] finishActivity doesnt work

2009-11-05 Thread Bob Cai
Hello,

In main Activity, I called startActivityForResult(intentB, 100) to start a
new activity B, then in B, I called startActivity(intentC) to start another
activity C. Lastly I wanted to call finishActivity(100) in C to close
activity B, but seemed it was not successfully destoried(I can use BACK key
to see it's still there.).

Anyone can give advice of this?

Thanks,
Bob

-- 
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 unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en