Replace * and -> with UTF symbols

This commit is contained in:
Daniel Martí 2013-12-26 12:46:10 +01:00
parent 47c0c2f6ab
commit 70fd272871
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ public class AppDetails extends ListActivity {
TextView tv = (TextView) v.findViewById(R.id.version);
tv.setText(getString(R.string.version) + " " + apk.version
+ (apk == app.curApk ? " *" : ""));
+ (apk == app.curApk ? " " : ""));
tv.setEnabled(apk.compatible);
tv = (TextView) v.findViewById(R.id.status);

View File

@ -160,7 +160,7 @@ abstract public class AppListAdapter extends BaseAdapter {
if (app.toUpdate) {
cur = ellipsize(app.installedVersion, 8);
span = new SpannableString(
cur + " -> " + ellipsize(app.curApk.version, 8));
cur + " " + ellipsize(app.curApk.version, 8));
} else {
cur = ellipsize(app.installedVersion, 12);
span = new SpannableString(cur);