web-dev-qa-db-ja.com

BitmapDrawable非推奨の代替

ドロアブルを設定した角度だけ回転させる次のコードがあります。

    public Drawable rotateDrawable(float angle, Context context)
    {
      Bitmap arrowBitmap = BitmapFactory.decodeResource(context.getResources(), R.drawable.generic2rb);

      // Create blank bitmap of equal size
      Bitmap canvasBitmap = arrowBitmap.copy(Bitmap.Config.ARGB_8888, true);
      canvasBitmap.eraseColor(0x00000000);

      // Create canvas
      Canvas canvas = new Canvas(canvasBitmap);

      // Create rotation matrix
      Matrix rotateMatrix = new Matrix();
      rotateMatrix.setRotate(angle, canvas.getWidth()/2, canvas.getHeight()/2);

      //Draw bitmap onto canvas using matrix
      canvas.drawBitmap(arrowBitmap, rotateMatrix, null);

      return new BitmapDrawable(canvasBitmap); 
    }

新しいSDKは、

BitmapDrawable(canvasBitmap); 

非推奨です。代替案はありますか?

http://developer.Android.com/reference/Android/graphics/drawable/BitmapDrawable.html

82
Lee Armstrong

代わりにこれを行います:

return new BitmapDrawable(context.getResources(), canvasBitmap);
186
onit

BitmapDrawableのKotlinコード:

var bitmapDrawable = BitmapDrawable(resources,bitmapObj)
0
Hamed Jaliliani

これを一度お試しください。

  1. 活動中

    BitmapDrawable background = new BitmapDrawable(this.getResources(), blurImageBg);
    
  2. フラグメントで

    BitmapDrawable background = new BitmapDrawable(getActivity(), blurImageBg);
    
  3. アダプターまたはその他

    BitmapDrawable background = new BitmapDrawable(context.getResources(), blurImageBg);
    
0
Surendar D