Replace png to vector drawable

Bug: 139336138
Test: visual
Change-Id: Ic778b7ce6ecfc48cb35a5618fd766d69d67a0834
This commit is contained in:
Raff Tsai
2019-08-14 14:13:29 +08:00
parent 05381bf009
commit 4831332a1c
31 changed files with 106 additions and 11 deletions

View File

@@ -125,13 +125,13 @@ public class AccountPreference extends Preference {
res = R.drawable.ic_settings_sync;
break;
case SYNC_DISABLED:
res = R.drawable.ic_sync_grey_holo;
res = R.drawable.ic_settings_sync_disabled;
break;
case SYNC_ERROR:
res = R.drawable.ic_sync_red_holo;
res = R.drawable.ic_settings_sync_failed;
break;
default:
res = R.drawable.ic_sync_red_holo;
res = R.drawable.ic_settings_sync_failed;
Log.e(TAG, "Unknown sync status: " + status);
}
return res;