可繪製的d = new BitmapDrawable(bitmap);
不工作,我明白這個構造函數已被棄用。
建議使用BitmapDrawable(資源,位圖)
,但不知道如何使用此構造
我躺在資源?
可繪製的d = new BitmapDrawable(bitmap);
不工作,我明白這個構造函數已被棄用。
建議使用BitmapDrawable(資源,位圖)
,但不知道如何使用此構造
我躺在資源?
使用context.getResources()。另請參閱http://developer.android.com/reference/android/content/Context.html#getResources()
以下代碼幫助了我。
BitmapDrawable bd = new BitmapDrawable(imgview.getResoureces,bitmap);
imgview是你的目標ImageView和位圖是你需要的位圖。