android - How to create a clickable Listview and go to new page where the user can add items within the list -
i guidance on how create clickable listview , go new page user can add items within list creating list, , want user able create multiple lists, , tap list, , enter multiple items within list. thanks. update - added .java code reference. may explain have implemented far better text above. public class actionbarmenudemoactivity extends sherlocklistactivity { private static final string[] items = { }; private arraylist<string> words = null; @override public void oncreate(bundle icicle) { super.oncreate(icicle); initadapter(); registerforcontextmenu(getlistview()); } @override public boolean oncreateoptionsmenu(menu menu) { new menuinflater(this).inflate(r.menu.option, menu); edittext add = null; if (build.version.sdk_int >= build.version_codes.honeycomb) { view v = menu.finditem(r.id.add).getactionview(); if (v != null) { add = (edittext) v.findviewbyid(r.id.title); } } if (add != null) { ...