我的活动中有6个ImageButton,我通过我的代码设置图像(不使用xml)。
我希望它们覆盖按钮区域的75%。但是,由于某些图像覆盖的区域较少,因此有些图像太大而无法适应图像按钮。如何以编程方式调整大小并显示它们? 以下是截图
下面是xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp" >
<LinearLayout
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_topleft"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_topright"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
</LinearLayout>
<LinearLayout
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_repeat"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_next"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
</LinearLayout>
<LinearLayout
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_bottomleft"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
<ImageButton
android:layout_height="match_parent"
android:layout_width="0dp"
android:layout_weight="1"
android:id="@+id/button_bottomright"
android:layout_marginBottom="5sp"
android:layout_marginLeft="2sp"
android:layout_marginRight="5sp"
android:layout_marginTop="0sp"
/>
</LinearLayout>
</LinearLayout>
和一小段片段 myClass.java:
public void addImageButtons()
{
iB_topleft = (ImageButton) findViewById(R.id.button_topleft);
iB_topright = (ImageButton) findViewById(R.id.button_topright);
iB_bottomleft = (ImageButton) findViewById(R.id.button_bottomleft);
iB_bottomright = (ImageButton) findViewById(R.id.button_bottomright);
iB_next = (ImageButton) findViewById(R.id.button_next);
iB_repeat = (ImageButton) findViewById(R.id.button_repeat);
}
public void setImageNextAndRepeat()
{
iB_topleft .setImageResource(R.drawable.aa);
iB_topright.setImageResource(R.drawable.bb);
iB_bottomleft.setImageResource(R.drawable.cc);
iB_bottomright.setImageResource(R.drawable.dd);
iB_next.setImageResource(R.drawable.next);
iB_repeat.setImageResource(R.drawable.repeat);
}
答案 0 :(得分:335)
我希望它们覆盖按钮区域的75%。
使用android:padding="20dp"
(根据需要调整填充)来控制图像占据按钮的程度。
但是,由于某些图像覆盖的区域较少,因此有些图像太大而无法适应imageButton。如何以编程方式调整大小并显示它们?
使用android:scaleType="fitCenter"
让Android缩放图片,使用android:adjustViewBounds="true"
让他们根据缩放调整边界。
所有这些属性都可以在运行时在每个ImageButton
的代码中设置。但是,在我看来,在xml中设置和预览要容易得多。
此外,不使用sp
用于除文字大小以外的任何内容,它会根据用户设置的文字尺寸偏好进行缩放,因此您的sp
尺寸将是如果用户具有“大”文本设置,则大于您的预期。请改用dp
,因为它不会被用户的文字大小首选项缩放。
以下是每个按钮应如下所示的片段:
<ImageButton
android:id="@+id/button_topleft"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="5dp"
android:layout_marginTop="0dp"
android:layout_weight="1"
android:adjustViewBounds="true"
android:padding="20dp"
android:scaleType="fitCenter" />
答案 1 :(得分:23)
我在xml
android:adjustViewBounds="true"
android:scaleType="centerInside"
答案 2 :(得分:8)
尝试在i-Imagebutton xml中使用android:scaleType="fitXY"
答案 3 :(得分:5)
我满意地使用android:scaleType="fitCenter"
。
答案 4 :(得分:2)
请参阅以下链接,尝试找到您真正想要的内容:
ImageView.ScaleType CENTER将图像置于视图中心,但执行 没有缩放。
ImageView.ScaleType CENTER_CROP统一缩放图像(维护 图像的宽高比)使两个尺寸(宽度和高度) 图像的大小等于或大于相应的 视图的尺寸(减去填充)。
ImageView.ScaleType CENTER_INSIDE均匀缩放图像(保持 图像的宽高比)使两个尺寸(宽度和高度) 图像的大小等于或小于相应的维度 视图(减去填充)。
ImageView.ScaleType FIT_CENTER使用CENTER缩放图像。
ImageView.ScaleType FIT_END使用END缩放图像。
ImageView.ScaleType FIT_START使用START缩放图像。
ImageView.ScaleType FIT_XY使用FILL缩放图像。
ImageView.ScaleType MATRIX绘图时使用图像矩阵进行缩放。
https://developer.android.com/reference/android/widget/ImageView.ScaleType.html
答案 5 :(得分:1)
我最近意外地发现,由于您对ImageView有更多控制权,因此您可以为图像设置onclicklistener 这是动态创建的图像按钮的示例
private int id;
private bitmap bmp;
LinearLayout.LayoutParams familyimagelayout = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.WRAP_CONTENT );
final ImageView familyimage = new ImageView(this);
familyimage.setBackground(null);
familyimage.setImageBitmap(bmp);
familyimage.setScaleType(ImageView.ScaleType.FIT_START);
familyimage.setAdjustViewBounds(true);
familyimage.setId(id);
familyimage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//what you want to do put here
}
});
答案 6 :(得分:0)
在我的案例中运作良好。首先,下载图像并将其重命名为iconimage,将其定位在drawable文件夹中。您可以通过设置android:layout_width
或android:layout_height
来更改尺寸。最后,我们有
<ImageButton
android:id="@+id/answercall"
android:layout_width="120dp"
android:layout_height="80dp"
android:src="@drawable/iconimage"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:scaleType="fitCenter" />
答案 7 :(得分:0)
您可以像我一样制作ImageButton小部件。就我而言,我需要一个具有固定图标大小的小部件。 让我们从自定义属性开始:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="ImageButtonFixedIconSize">
<attr name="imageButton_icon" format="reference" />
<attr name="imageButton_iconWidth" format="dimension" />
<attr name="imageButton_iconHeight" format="dimension" />
</declare-styleable>
</resources>
Widget类非常简单(关键是 onLayout 方法中的填充计算):
class ImageButtonFixedIconSize
@JvmOverloads
constructor(
context: Context,
attrs: AttributeSet? = null,
defStyleAttr: Int = android.R.attr.imageButtonStyle
) : ImageButton(context, attrs, defStyleAttr) {
private lateinit var icon: Drawable
@Px
private var iconWidth: Int = 0
@Px
private var iconHeight: Int = 0
init {
scaleType = ScaleType.FIT_XY
attrs?.let { retrieveAttributes(it) }
}
/**
*
*/
override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
val width = right - left
val height = bottom - top
val horizontalPadding = if(width > iconWidth) (width - iconWidth) / 2 else 0
val verticalPadding = if(height > iconHeight) (height - iconHeight) / 2 else 0
setPadding(horizontalPadding, verticalPadding, horizontalPadding, verticalPadding)
setImageDrawable(icon)
super.onLayout(changed, left, top, right, bottom)
}
/**
*
*/
private fun retrieveAttributes(attrs: AttributeSet) {
val typedArray = context.obtainStyledAttributes(attrs, R.styleable.ImageButtonFixedIconSize)
icon = typedArray.getDrawable(R.styleable.ImageButtonFixedIconSize_imageButton_icon)!!
iconWidth = typedArray.getDimension(R.styleable.ImageButtonFixedIconSize_imageButton_iconWidth, 0f).toInt()
iconHeight = typedArray.getDimension(R.styleable.ImageButtonFixedIconSize_imageButton_iconHeight, 0f).toInt()
typedArray.recycle()
}
}
最后,您应该像这样使用小部件:
<com.syleiman.gingermoney.ui.common.controls.ImageButtonFixedIconSize
android:layout_width="90dp"
android:layout_height="63dp"
app:imageButton_icon="@drawable/ic_backspace"
app:imageButton_iconWidth="20dp"
app:imageButton_iconHeight="15dp"
android:id="@+id/backspaceButton"
tools:ignore="ContentDescription"
/>