Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. COThanks for your reply. But it seems that your answer is not what I want. May be I try to explain more clearly. I have an activity which contains textview on top and listview is under textview. This is main layout. And then I use simplecursoradapter and populate cursor data into listadapter and put listadapter into listview.The problem is that I don't know how to retrieve the data and modify the textview used by simplecursoradapter. listadapter = new SimpleCursorAdapter(this,R.layout.itemlist,listcursor,new String[]{"item","time","price"},new int[]{R.id.item,R.id.date,R.id.price});
      singulars
    2. COI want to retrieve the data in "price" in cursor, price is column in cursor. And then add currency sign to price and show in listview. In my listview it contains cursor data. Each record contains item,date and price. But according to my understanding each activity only can "setContentView" for one layout not two. Does it possible to retrieve the column in cursor used by simplecursoradapter and add string to column and display it in listview but without changing the content of cursor column ?
      singulars
    3. COFor example, one record in cursor in price column is 4000, but I want to add currency sign like "$" to form "$4000", but price column still store 4000 in sqlite DB, only shown as $4000 in listview. Actually itemlist above in simplecursoradapter contains three textviews. Hope that you understand what I want to do now, thanks !!
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload