summaryrefslogtreecommitdiffstats
path: root/src/org/madore/android/unicodeMap/UnicodeListActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* Restructure deeply: now we have a single activity, with a dedicated adapter.David A. Madore2010-04-261-62/+0
| | | | | | | | The UnicodeArrayAdapter displays a list of UnicodeDisplayable, which can be either UnicodeCharacter or UnicodeCharacter.Range, and provides appropriate views for either one. Rather than changing activity, we change the ListAdapter. To simulate an activity stack, we capture the back key.
* List layout: display characters differently from their labels.David A. Madore2010-04-251-1/+3
| | | | | 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-4/+12
|
* Full Unicode database. But progress bar does not work.David A. Madore2010-04-241-1/+1
| | | | | | 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.
* Create a two-tiered menu system.David A. Madore2010-04-241-0/+52
UnicodeMapActivity is the root activity, which launches UnicodeListActivity for the desired range.