[android-beginners] Creating a listview in for an android home screen widgets

2010-07-25 Thread Rodney Lendore
Hi, I was trying to create a scrolling list view for an android home screen widget with the following layout ?xml version=1.0 encoding=utf-8? !-- res/layout/bday_widget.xml -- !-- The initial layout of the widget as it would appear on the home screen -- RelativeLayout

Re: [android-beginners] Creating a listview in for an android home screen widgets

2010-07-25 Thread Justin Anderson
That is correct... Only specific views can be used in a RemoteView. The documentation specifies which views can be used. On Jul 25, 2010 10:06 AM, Rodney Lendore rodney.lend...@gmail.com wrote: Hi, I was trying to create a scrolling list view for an android home screen widget with the following

Re: [android-beginners] Creating a listview in for an android home screen widgets

2010-07-25 Thread Rodney Lendore
So is there another way to create a scrollable List in a widget ? I thinking along the lines of the HTC Calender widget in which you can scroll through all your events for the month etc. Thanks On Sun, Jul 25, 2010 at 6:23 PM, Justin Anderson janderson@gmail.comwrote: That is correct...

Re: [android-beginners] Creating a listview in for an android home screen widgets

2010-07-25 Thread Kostya Vasilyev
Sure. Add one or more (repeating) views, make a couple buttons for scrolling to previous/next positions, and update data item views when these buttons are clicked. Press and drag is reserved for home screen switching, anyway. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 25.07.2010 22:30

Re: [android-beginners] Creating a listview in for an android home screen widgets

2010-07-25 Thread YuviDroid
Only home replacements apps are supporting scrollable widgets...you can take a look here: http://groups.google.com/group/android-appwidget-extensions On Sun, Jul 25, 2010 at 8:30 PM, Rodney Lendore rodney.lend...@gmail.comwrote: So is there another way to create a scrollable List in a widget ?