summaryrefslogtreecommitdiffstats
path: root/src/org/madore/android/unicodeMap/UnicodeDatabase.java
Commit message (Collapse)AuthorAgeFilesLines
* Implement a search mechanism.David A. Madore2010-04-271-1/+11
|
* Fix various brokennesses. Populate database only when necessary.David A. Madore2010-04-251-10/+29
| | | | | | 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-2/+5
| | | | | | | 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-23/+28
| | | | | I don't understand the point of this whole rigmarole, nor do I understand why it doesn't work... :-(
* Full Unicode database. But progress bar does not work.David A. Madore2010-04-241-38/+65
| | | | | | The Unicode database should be populated from the assets by calling .populate() on it: this works but, for some reason, the progress bar does not appear.
* Make categories into an enum. Show only printable characters.David A. Madore2010-04-241-2/+3
|
* Store data in a SQLite database.David A. Madore2010-04-231-0/+174