Wouter wrote:
> But i have a layout xml file where i declarate all the widgets (yes
> its a lot).
> Do i have to put this layout file in seperate file (so for all that
> has to come above the review list) and then do like this:
> 
> View v = LayoutInflater.from(this).inflate(your_layout_xml,......);
> 
> and then add this view to the arraylist of views? (like in the
> SackOfViewsDemo).
> 
> I also have a custom adapter for my listview (list of rows)
> 
> Or how can i do this the best and easiest? :)

Either:

-- Put all of your widgets (outside of the custom adapter) in separate
layout files, or

-- Construct them in Java rather than use layout XML

It's conceivable to add support for loading a single layout file and
pouring all the root's children into the list, but I don't have that in
there right now.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Need help for your Android OSS project? http://wiki.andmob.org/hado

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to