Drawable
recieve_btn.9
パッチ画像 からビットマップを作成しました
BitmapDrawable mimage =(BitmapDrawable) getResources().getDrawable(R.drawable.recieve_btn);
みたいなエラーログ
java.lang.ClassCastException: android.graphics.drawable.NinePatchDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
高さも取得したい - 幅のような
int mheight = mimage.getBitmap().getHeight();
int mwidht = mimage.getBitmap().getWidth();
しかし、問題はBitmap
9 パッチから作成できないことimage
です。