I would like to create simple editor screen - similar to the "Add Event" screen on Samsung Galaxy S Calendar App. That screen looks totally like a PreferenceScreen, with each item (event name, event date etc.)开发者_JAVA百科 in a separate row. But I'm pretty sure that all the data from that screen are not saved as a SharedPreferences.
So my question is: do you have any idea how to create screen that will look similar? Should I define ListView with custom view for each row in the list?
A listview is usually for a dynamic number of views. Sounds like you could easily do this with just a linearlayout or a scrollview.
精彩评论