Fit Image in ImageButton in Android Fit Image in ImageButton in Android android android

Fit Image in ImageButton in Android


I want them to cover 75% of the button area.

Use android:padding="20dp" (adjust the padding as needed) to control how much the image takes up on the button.

but where as some images cover less area, some are too big to fit into the imageButton. How to programatically resize and show them?

Use a android:scaleType="fitCenter" to have Android scale the images, and android:adjustViewBounds="true" to have them adjust their bounds due to scaling.

All of these attributes can be set in code on each ImageButton at runtime. However, it is much easier to set and preview in xml in my opinion.

Also, do not use sp for anything other than text size, it is scaled depending on the text size preference the user sets, so your sp dimensions will be larger than your intended if the user has a "large" text setting. Use dp instead, as it is not scaled by the user's text size preference.

Here's a snippet of what each button should look like:

    <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" />

Sample Button


I'm using the following code in xml

android:adjustViewBounds="true"android:scaleType="centerInside"


Try to use android:scaleType="fitXY" in i-Imagebutton xml