Converted all icon drawables to vector.

Removed Android-Iconics library.
This commit is contained in:
NoodleMage
2016-03-08 00:35:28 +01:00
parent bcbd541d48
commit 8b45df37d2
244 changed files with 381 additions and 41 deletions
@@ -191,9 +191,9 @@ public class ReaderMenu {
.subscribe(value -> {
boolean isPortrait = activity.getResources().getConfiguration()
.orientation == Configuration.ORIENTATION_PORTRAIT;
int resourceId = value == 1 ? R.drawable.ic_screen_rotation : isPortrait ?
R.drawable.ic_screen_lock_portrait :
R.drawable.ic_screen_lock_landscape;
int resourceId = value == 1 ? R.drawable.ic_screen_rotation_white_24dp : isPortrait ?
R.drawable.ic_screen_lock_portrait_white_24dp :
R.drawable.ic_screen_lock_landscape_white_24dp;
lockOrientation.setImageResource(resourceId);
}));