(int dips, Context context)
| 526 | } |
| 527 | |
| 528 | public static int dips2pixels(int dips, Context context) { |
| 529 | return Math.round(dips * context.getResources().getDisplayMetrics().density + 0.5f); |
| 530 | } |
| 531 | |
| 532 | private static int calculateInSampleSize( |
| 533 | BitmapFactory.Options options, int reqWidth, int reqHeight) { |
no outgoing calls
no test coverage detected