Made "Load more messages" cue a little more informative.

Now pulls k9.VISIBLE_LIMIT_INCREMENT and says "Load up to (increment value) more".
Also, the build number was auto-updated by my build script. This shows up in the debug menu. It would be nice to have ant handle this, but I'm not sure how to make it do that.
This commit is contained in:
Brock Tice 2008-11-04 19:40:44 +00:00
parent 21655bcd26
commit 15ba4d0f39
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="build_number">20080722-0001</string>
<string name="build_number">114M</string>
</resources>

View File

@ -1129,7 +1129,8 @@ public class FolderMessageList extends ExpandableListActivity {
}
else {
if (folder.status == null) {
holder.main.setText(getString(R.string.message_list_load_more_messages_action));
// holder.main.setText(getString(R.string.message_list_load_more_messages_action));
holder.main.setText("Load up to " + k9.VISIBLE_LIMIT_INCREMENT + " more");
}
else {
holder.main.setText(getString(R.string.status_loading_more_failed));