Searched defs:targetDensity (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java953 * @param targetDensity The density of the target canvas of the bitmap.
956 public int getScaledWidth(int targetDensity) { argument
957 return scaleFromDensity(getWidth(), mDensity, targetDensity);
964 * @param targetDensity The density of the target canvas of the bitmap.
967 public int getScaledHeight(int targetDensity) { argument
968 return scaleFromDensity(getHeight(), mDensity, targetDensity);

Completed in 8 milliseconds