Re: [android-developers] Spinner with added Text

2011-04-18 Thread TreKing
On Mon, Apr 18, 2011 at 12:10 PM, New Developer wrote: > Using a Spinner how do I type in the new name and it is added to the drop > down list? One of you spinner items could be "Add New Calendar..". Clicking this you popup a dialog with an EditText. When user hits OK, you pass the value of the

Re: [android-developers] Spinner with added Text

2011-04-18 Thread Kumar Bibek
You cant do that with a spinner. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Mon, Apr 18, 2011 at 10:40 PM, New Developer wrote: > Hi > Using a Spinner Is there a way while using (or from the UI) to type in a > new option > Say I have a spinner with a list of calendar

[android-developers] Spinner with added Text

2011-04-18 Thread New Developer
Hi Using a Spinner Is there a way while using (or from the UI) to type in a new option Say I have a spinner with a list of calendars (actually list of .ics files) Now I want to create a NEW calendar Using a Spinner how do I type in the new name and it is added to the drop down list? thank