• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. E

    Apps searching SQLlite DB and list view

    anyone can help on searching from database on a listview. here is my sample code. i got no problem in getting all rows from database. public class Namelist extends Activity { ListView listView; DbManager db; ImageView btnImageSearch; String SName; EditText name; protected void...
  2. E

    Apps Android app using eclipse (Listview and SqlLite)

    Current Output: [[a],,[c]] the output is like above which is i want to view from listview like: a b c here's my code at load my xml: ArrayList<ArrayList<Object>> data = db.getAllRowsAsArrays(); String[] planets = new String[] { data.toString()}; ArrayList<String>...