summaryrefslogtreecommitdiffstats
path: root/src/org/madore/android/unicodeMap/UnicodeMapActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* List layout: display characters differently from their labels.David A. Madore2010-04-251-1/+1
| | | | | This is done by making UnicodeCharacter implement Map<String,String> so as to use it in a SimpleAdapter, but really, this is ugly.
* Start using a non-trivial layout. So far, doesn't do much.David A. Madore2010-04-251-0/+1
|
* Full repertoire of Unicode blocks.David A. Madore2010-04-251-1/+167
|
* Fix various brokennesses. Populate database only when necessary.David A. Madore2010-04-251-25/+31
| | | | | | I had forgotten to call db.setTransactionSuccessful() (but had failed to notice that because the database was already populated by my previous test).
* Repair progress bar. Use a transaction for populating db.David A. Madore2010-04-251-1/+3
| | | | | | | Default max for progress bar is not 10000 contrary to what doc says. SQLite is excruciatingly slow in the absence of transactions, so we use one.
* Use a separate thread for populating database. Still doesn't work.David A. Madore2010-04-251-0/+26
| | | | | I don't understand the point of this whole rigmarole, nor do I understand why it doesn't work... :-(
* Create a two-tiered menu system.David A. Madore2010-04-241-16/+29
| | | | | UnicodeMapActivity is the root activity, which launches UnicodeListActivity for the desired range.
* Store data in a SQLite database.David A. Madore2010-04-231-28/+7
|
* Start a very primitive unicode character map.David A. Madore2010-04-221-0/+64