What is the best way to retrieve the dimensions of the Drawable in an ImageView?
My ImageView has an Init-Method where i create the ImageView:
private void init() {
coverImg = new ImageView(context);
coverImg.setScaleType(ScaleType.FIT_START);
coverImg.setImageDrawable(getResources().getDrawable(R.drawable.store_blind_cover));
addView(coverImg);
}
At some point during the layout oder measure process i need the exact dimensions of the Drawable to adjust the rest of my Components around it.
coverImg.getHeight() and coverImg.getMeasuredHeight() don't return the results that i need and if i use coverImg.getDrawable().getBounds() i get the dimensions before it was scaled by the ImageView.
Thanks for your help!