gpt4 book ai didi

java - 以编程方式设置可绘制大小

转载 作者:IT老高 更新时间:2023-10-28 11:42:30 26 4
gpt4 key购买 nike

图像(图标)的大小大致相同,但我需要调整它们的大小以使按钮保持相同的高度。

我该怎么做?

Button button = new Button(this);
button.setText(apiEventObject.getTitle());
button.setOnClickListener(listener);

/*
* set clickable id of button to actual event id
*/
int id = Integer.parseInt(apiEventObject.getId());
button.setId(id);

button.setLayoutParams(new LayoutParams(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT));

Drawable drawable = LoadImageFromWebOperations(apiSizeObject.getSmall());
//?resize drawable here? drawable.setBounds(50, 50, 50, 50);
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null);

最佳答案

setBounds() 方法并不适用于所有类型的容器(但确实适用于我的一些 ImageView)。

尝试下面的方法来缩放drawable本身:

// Read your drawable from somewhere
Drawable dr = getResources().getDrawable(R.drawable.somedrawable);
Bitmap bitmap = ((BitmapDrawable) dr).getBitmap();
// Scale it to 50 x 50
Drawable d = new BitmapDrawable(getResources(), Bitmap.createScaledBitmap(bitmap, 50, 50, true));
// Set your new, scaled drawable "d"

关于java - 以编程方式设置可绘制大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4609456/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com