소스 검색

Fix: Bottom Nav Icons disappear when getting a CodePush (#2931)

andresesfm 6 년 전
부모
커밋
5a75863580
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      lib/android/app/src/main/java/com/reactnativenavigation/utils/ImageLoader.java

+ 1
- 1
lib/android/app/src/main/java/com/reactnativenavigation/utils/ImageLoader.java 파일 보기

@@ -63,7 +63,7 @@ public class ImageLoader {
63 63
     }
64 64
 
65 65
     private Drawable loadFile(String uri) {
66
-        Bitmap bitmap = BitmapFactory.decodeFile(uri);
66
+        Bitmap bitmap = BitmapFactory.decodeFile(Uri.parse(uri).getPath());
67 67
         return new BitmapDrawable(NavigationApplication.instance.getResources(), bitmap);
68 68
     }
69 69