I’m trying to create something like editable UITableView on iPhone.

I added a button to add new items at the end of the list which would be the equivalent of the “+” button on iphone, this takes user to a list of items to add. My problem is that when they select one I don’t know how to add it to the list.
<LinearLayout
android:key="application_preferences"
android:title="Applications">
</LinearLayout>
How can I append a view inside the LinearLayout programatically?
You can use
addViewto add a child view to aViewGroup, but also consider just usingListViewinstead of aLinearLayout.