[android-beginners] Re: how to change Widget layout when screen is opend

2009-06-20 Thread kelly
Never mind, I had a short bout of "head made of solid bone." I'm over it... On Jun 20, 4:59 pm, kelly wrote: > I'm stuck with the same issue. I have two layouts for my widget, one > in res/layout/ and one in res/layout-land/, both with the same name. > For some reas

[android-beginners] Re: how to change Widget layout when screen is opend

2009-06-20 Thread kelly
I'm stuck with the same issue. I have two layouts for my widget, one in res/layout/ and one in res/layout-land/, both with the same name. For some reason, the layout file in layout-land/ is being ignored when I create a widget in landscape mode. I can verify this by making some kind of obvious vis

[android-beginners] Re: Why does Android use Binder for IPC?

2009-03-31 Thread Kelly Mao
I have the same doubt,who can explain this. On Mar 31, 4:13 pm, "Bai.Luo" wrote: > what is the advantage and special feature of Binder in android? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners"

[android-beginners] Which version of android support transfer photos or files through bluetooth?

2009-03-31 Thread Kelly Mao
Recently, I was studing something of bluetooth. My version is Android 1.0, it can dial through bluetooth's earphone.But it doesn't support transfer photos and other files.So I want to know which version we can get this function. --~--~-~--~~~---~--~~ You received t

[android-beginners] Re: eclipse is not talking to android

2009-03-23 Thread kelly
Great, Thanks! I will try it and let you know. Kelly On Mar 18, 12:15 pm, Xavier Ducrohet wrote: > You can download an archive of the plugin > fromhttp://developer.android.com/sdk/adt_download.html > > Xav > > > > On Tue, Mar 17, 2009 at 9:23 PM, kelly wrote: > >

[android-beginners] eclipse is not talking to android

2009-03-17 Thread kelly
. Is there a way arround this problem? Please help me. regards kelly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.co

[android-beginners] Accessing SharedPreferences

2008-10-26 Thread kelly
screen wrote. In review, what I need to do is read the preferences that were saved. Can someone clue me in on how to do that? Thanks, Kelly Schrock --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Begi

[android-beginners] What's the RIGHT way to detect multi-select ListView item selections?

2008-10-17 Thread kelly
Hi, I have a multi-select ListActivity, and I'd like to programmatically detect which of the items are selected. I tried implementing OnListItemClick(), and doing this: if(v instanceof CheckedTextView) { boolean selected = ((CheckedTextView