Replace * and -> with UTF symbols

Этот коммит содержится в:
Daniel Martí 2013-12-26 12:46:10 +01:00
родитель 47c0c2f6ab
Коммит 70fd272871
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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);

Просмотреть файл

@ -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);