Note that there are some explanatory texts on larger screens.

plurals
  1. USWilliam
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COWhat size do you put to make it actually fit the whole textbox though? If you choose a size too big TextView decides to chop/insert new lines in your text (and I'm not sure how it's deciding). If you choose a small size and don't put new lines in yourself its kind of hard to size it without basically stepping through every font size and having it relayout the text (inserting new lines) each time. It would be nice if you just prevent TextView from messing with things and sizing/inserting new lines yourself.
      singulars
    2. COI was able to add in some code for registerDataSetObserver(cursor) which will call BaseAdapter.notifyDataSetChanged or .notifyDataSetInvalidated (which by default does nothing). And that seem to make everyone happy. Is there a reason this isn't in MergeAdapter that I'm overlooking? Or is this just an unusual case?
      singulars
    3. COI tried overriding getViewTypeCount() and getItemViewType() but while the behavior was different, it didn't seem to match what I thought it should be. I did try MergeAdapter and it does what I'd like though it causes a problem with the cursor when you update the list. When the ListView adapter is set to the CursorAdapter directly everything works, when I set the ListView adapter to a MergeAdapter (with a CursorAdapter and other views inside it) the cursor doesn't get updated... not sure if I need a managedCursor or if MergeAdapter needs to be modified.
      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