(Context context, int resId, String key)
| 269 | } |
| 270 | |
| 271 | public static Drawable getThemedDrawable(Context context, int resId, String key) { |
| 272 | return getThemedDrawable(context, resId, getColor(key)); |
| 273 | } |
| 274 | |
| 275 | public static Drawable getThemedDrawable(Context context, int resId, int color) { |
| 276 | if (context == null) { |
no test coverage detected