From 6bc6eb88d947ea6b91aa634172d33839781c3fbe Mon Sep 17 00:00:00 2001 From: Dmitriy Prodchenko Date: Fri, 14 Apr 2017 12:38:53 +0300 Subject: [PATCH] Change icons. --- .../plus/download/ui/DataStoragePlaceDialogFragment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/download/ui/DataStoragePlaceDialogFragment.java b/OsmAnd/src/net/osmand/plus/download/ui/DataStoragePlaceDialogFragment.java index b1beaed2c1..8bd107fff7 100644 --- a/OsmAnd/src/net/osmand/plus/download/ui/DataStoragePlaceDialogFragment.java +++ b/OsmAnd/src/net/osmand/plus/download/ui/DataStoragePlaceDialogFragment.java @@ -103,7 +103,7 @@ public class DataStoragePlaceDialogFragment extends BottomSheetDialogFragment { View deviceStorageRow = view.findViewById(R.id.deviceMemoryRow); deviceStorageRow.setOnClickListener(deviceMemoryOnClickListener); ImageView deviceStorageImageView = (ImageView) view.findViewById(R.id.deviceMemoryImageView); - deviceStorageImageView.setImageDrawable(getContentIcon(R.drawable.ic_sdcard)); + deviceStorageImageView.setImageDrawable(getContentIcon(R.drawable.ic_action_phone)); TextView deviceStorageDescription = (TextView) view.findViewById(R.id.deviceMemoryDescription); deviceStorageDescription.setText(deviceStorageName); deviceStorageDescription.setText(getFreeSpace(deviceStorage)); @@ -112,7 +112,7 @@ public class DataStoragePlaceDialogFragment extends BottomSheetDialogFragment { if (hasExternalStoragePermission && sharedStorage != null) { sharedMemoryRow.setOnClickListener(sharedMemoryOnClickListener); ImageView sharedMemoryImageView = (ImageView) view.findViewById(R.id.sharedMemoryImageView); - sharedMemoryImageView.setImageDrawable(getContentIcon(R.drawable.ic_sdcard)); + sharedMemoryImageView.setImageDrawable(getContentIcon(R.drawable.ic_action_phone)); TextView sharedMemoryDescription = (TextView) view.findViewById(R.id.sharedMemoryDescription); sharedMemoryDescription.setText(getFreeSpace(sharedStorage)); } else {