(@ColorRes int colorResId)
| 56 | private static int statusBarHeight; |
| 57 | |
| 58 | public static int getColor(@ColorRes int colorResId) { |
| 59 | try { |
| 60 | return ContextCompat.getColor(AppContext.getAppContext(), colorResId); |
| 61 | } catch (Exception e) { |
| 62 | return Color.TRANSPARENT; |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | public static void clearImageViewMemory(ImageView imageView) { |
| 67 | if (imageView == null) { |
no test coverage detected