在Android中调整Drawable大小

pxyaymoc  于 2024-01-04  发布在  Android
关注(0)|答案(8)|浏览(215)

我正在为进度对话框(pbarDialog)设置一个可绘制对象,但我的问题是我每次都想调整可绘制对象的大小,但不知道如何调整。
下面是一些代码:

  1. Handler progressHandler = new Handler() {
  2. public void handleMessage(Message msg) {
  3. switch (msg.what) {
  4. // some more code
  5. case UPDATE_PBAR:
  6. pbarDialog.setIcon(mAppIcon);
  7. pbarDialog.setMessage(mPbarMsg);
  8. pbarDialog.incrementProgressBy(mIncrement+1);
  9. break;
  10. }
  11. }
  12. };
  13. pbarDialog.show();
  14. Thread myThread = new Thread(new Runnable() {
  15. public void run() {
  16. // some code
  17. for (int i = 0; i < mApps.size(); i++) {
  18. mAppIcon = mAdapter.getIcons().get(mApps.get(i).getPackageName());
  19. // need to resize drawable here
  20. progressHandler.sendEmptyMessage(UPDATE_PBAR);
  21. }
  22. handler.sendEmptyMessage(DISMISS_PBAR);
  23. }
  24. });
  25. myThread.start();

字符串

vybvopom

vybvopom1#

以下为我工作:

  1. private Drawable resize(Drawable image) {
  2. Bitmap b = ((BitmapDrawable)image).getBitmap();
  3. Bitmap bitmapResized = Bitmap.createScaledBitmap(b, 50, 50, false);
  4. return new BitmapDrawable(getResources(), bitmapResized);
  5. }

字符串

2sbarzqh

2sbarzqh2#

这是我最终的结果,部分归功于萨阿德的回答:

  1. public Drawable scaleImage (Drawable image, float scaleFactor) {
  2. if ((image == null) || !(image instanceof BitmapDrawable)) {
  3. return image;
  4. }
  5. Bitmap b = ((BitmapDrawable)image).getBitmap();
  6. int sizeX = Math.round(image.getIntrinsicWidth() * scaleFactor);
  7. int sizeY = Math.round(image.getIntrinsicHeight() * scaleFactor);
  8. Bitmap bitmapResized = Bitmap.createScaledBitmap(b, sizeX, sizeY, false);
  9. image = new BitmapDrawable(getResources(), bitmapResized);
  10. return image;
  11. }

字符串

展开查看全部
8cdiaqws

8cdiaqws3#

对于我来说,这是一个很好的短代码(上面的代码对我来说不起作用),找到了here

  1. ImageView iv = (ImageView) findViewById(R.id.imageView);
  2. Bitmap bMap = BitmapFactory.decodeResource(getResources(), R.drawable.picture);
  3. Bitmap bMapScaled = Bitmap.createScaledBitmap(bMap, newWidth, newHeight, true);
  4. iv.setImageBitmap(bMapScaled);

字符串

a11xaf1n

a11xaf1n4#

以下是上述答案的组合,作为Kotlin扩展

  1. fun Context.scaledDrawableResources(@DrawableRes id: Int, @DimenRes width: Int, @DimenRes height: Int): Drawable {
  2. val w = resources.getDimension(width).toInt()
  3. val h = resources.getDimension(height).toInt()
  4. return scaledDrawable(id, w, h)
  5. }
  6. fun Context.scaledDrawable(@DrawableRes id: Int, width: Int, height: Int): Drawable {
  7. val bmp = BitmapFactory.decodeResource(resources, id)
  8. val bmpScaled = Bitmap.createScaledBitmap(bmp, width, height, false)
  9. return BitmapDrawable(resources, bmpScaled)
  10. }

字符串
使用方法:

  1. val scaled = context.scaledDrawableResources(R.drawable.ic_whatever, R.dimen.width, R.dimen.height)
  2. imageView.setImageDrawable(scaled)


  1. val scaled = context.scaledDrawable(R.drawable.ic_whatever, 100, 50)
  2. imageView.setImageDrawable(scaled)

展开查看全部
afdcj2ne

afdcj2ne5#

也许我的解决方案没有完全解决这个问题,但是我需要一个类似于“CustomDrawable”的东西。
换句话说,我想在一个圆形前面设置一个标志。所以我创建了一个带有背景的FrameLayout(只是一个彩色的圆形),在这个圆形前面显示标志。

要调整徽标的大小,我通过缩放缩小徽标-这里是一些代码:

  1. iv = new ImageView(mContext);
  2. iv.setScaleX(0.75f); // <- resized by scaling
  3. iv.setScaleY(0.75f);
  4. // loading the drawable from a getter (replace this with any drawable)
  5. Drawable drawable = ML.loadIcon(mContext, Integer.parseInt(icon));
  6. iv.setImageDrawable(drawable);
  7. // icon get's shown inside a ListView
  8. viewHolder.mIvIcon.addView(iv);

字符串
下面是FrameLayout,它显示ListView行中的图标:

  1. <FrameLayout
  2. android:id="@+id/iv_card_icon"
  3. android:layout_width="48dp"
  4. android:layout_height="48dp"
  5. android:src="@drawable/circle"
  6. android:layout_marginStart="16dp"
  7. />


将此解决方案视为一种选择/想法。

展开查看全部
nszi6y05

nszi6y056#

如果源Drawable不是BitmapDrawable的instanceofBitmapDrawable,那么投票最多的答案将不起作用,这可能是使用矢量,颜色drawable等的情况。
最合适的解决方案可能是将Drawable绘制到具有设置位图的Canvas中,如下所示:

  1. @NonNull final Drawable drawable = yourSourceDrawable;
  2. // Define the Canvas and Bitmap the drawable will be drawn against
  3. final Canvas c = new Canvas();
  4. c.setBitmap(bitmap);
  5. // Draw the scaled drawable into the final bitmap
  6. if (yourSourceDrawable!= null) {
  7. yourSourceDrawable.setBounds(0, 0, newWidth, newHeight);
  8. yourSourceDrawable.draw(c);
  9. }

字符串
奖金:计算要应用的比例(例如,当缩放Drawable到视图时):

  1. if (drawable != null && drawable.getIntrinsicWidth() > 0 && drawable.getIntrinsicHeight() > 0) {
  2. // the intrinsic dimensions can be -1 in some cases such as ColorDrawables which aim to fill
  3. // the whole View
  4. previewWidth = drawable.getIntrinsicWidth();
  5. previewHeight = drawable.getIntrinsicHeight();
  6. }
  7. final float widthScale = mViewWidth / (float) (previewWidth);
  8. if (widthScale != 1f)
  9. newWidth = Math.max((int)(widthScale * previewWidth), 1);
  10. final float heightScale = mViewHeight / (float) (previewHeight);
  11. if (heightScale != 1f)
  12. newHeight = Math.max((int)(heightScale * previewHeight), 1);

注意:始终在工作线程中执行此操作!

展开查看全部
uinbv5nw

uinbv5nw7#

Kotlin方式

最后对我有用的是这个简单的解决方案

  1. fun resizeDrawable(width:Int, height:Int): Drawable {
  2. val drawable = ResourceUtils.getDrawable(R.drawable.ic_info)
  3. val bitmap = drawable.toBitmap(width, height) //here width and height are in px
  4. return bitmap.toDrawable(getResources())
  5. }

字符串

hgncfbus

hgncfbus8#

对于任何仍然在这个问题上挣扎的人,请记住,这里最受欢迎的答案并不是正确的方法。如果你拥有的Drawable不是从BitmapDrawable扩展的,那么将任何Drawable转换为BitmapDrawable是行不通的,你会得到一个ClassCastException。
这是我最终使用的代码,它适用于每一种Drawable:
Kotlin酒店

  1. fun Context.getResizedDrawable(
  2. @DrawableRes drawableId: Int,
  3. @DimenRes size: Int,
  4. ): Drawable? {
  5. val dimen = resources.getDimensionPixelSize(size)
  6. return ContextCompat.getDrawable(this, drawableId)?.let { drawable ->
  7. val bitmap = Bitmap.createBitmap(dimen, dimen, Bitmap.Config.ARGB_8888)
  8. val canvas = Canvas(bitmap)
  9. drawable.setBounds(0, 0, canvas.width, canvas.height)
  10. drawable.draw(canvas)
  11. BitmapDrawable(this.resources, bitmap)
  12. }
  13. }

字符串

** java **

  1. @Nullable
  2. public Drawable getResizedDrawable(
  3. Context context,
  4. @DrawableRes int drawableId,
  5. @DimenRes int size
  6. ) {
  7. int dimen = context.getResources().getDimensionPixelSize(size);
  8. Drawable drawable = ContextCompat.getDrawable(context, drawableId);
  9. Bitmap bitmap = Bitmap.createBitmap(dimen, dimen, Bitmap.Config.ARGB_8888);
  10. if (drawable != null) {
  11. Canvas canvas = new Canvas(bitmap);
  12. drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
  13. drawable.draw(canvas);
  14. return new BitmapDrawable(context.getResources(), bitmap);
  15. } else {
  16. return null;
  17. }
  18. }

展开查看全部

相关问题