android - Search to show a new intent? -
maybe 1 can me this... have custom search button (i have google search need this)..
here scenario:
on main page have list of records
i click on search button shows list of tags can click on system search
-i return main page string telling me records view
-the main page shows records
this fine, problem if click app quits, understandable , suppose happen. want same android search function opens result in new page , when click takes me full list
cursor notescursor3 = mdbhelper.fetchsearchtagnotes(matchnotes); startmanagingcursor(notescursor3); string[] = new string[]{notesdbadapter.key_title,notesdbadapter.key_createdon}; int[] = new int[]{r.id.text1,r.id.date}; simplecursoradapter notes = new simplecursoradapter(this, r.layout.notes_row, notescursor3, from, to); setlistadapter(notes);
this simple code after getting search result, changing adapter list (i same default android search works said).
never mind question. had succumb inability find answer , create custom intent this
Comments
Post a Comment