[android-beginners] Bug in AutoComplete4 example?

2008-07-11 Thread Ashok Singal
Hi Friends, After setting the correct permissions(READ_CONTACTS) and adding some contacts in the emulator, when i am running the AutoComplete4 example provided in the APIDemos, i found that the auto-complete functionality is not working. No matter what i type, it is showing me all the names of the

[android-beginners] Re: Respoding to Menu button click?

2008-06-25 Thread Ashok Singal
Hi Mike, If you could go through the Tutorial Exercise 2nd, you will find that there are two functions that Android has provided for managing items in the Menu Control as following: 1. onCreateOptionsMenu(): You can create your items in Menu. 2. onMenuItemSelected(): What action needs to be take

[android-beginners] Basic Question

2008-06-25 Thread Ashok Singal
Hi All, I am new to the Android world. I am trying to run following piece of code in the SDK : *public* *void* onCreate(Bundle icicle) { *...* String sMenuItems[] = {"Menu Item1", "Menu Item2", "Menu Item3"}; List list = Arrays.*asList*(sMenuItems); ArrayAdapter aListAdapter = *new* Arr