如何为Android应用程序设置自定义图像按钮?

时间:2015-10-25 01:30:57

标签: android

我在尝试在布局中使用图片按钮时遇到问题。添加第一个图像按钮时一切都还可以,但是当我添加第二个图像按钮时,第一个图像按钮会收缩,是否取决于我使用的布局?我设置了相对布局,但我不知道如何保持每个按钮的大小相同。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.example.supernovastudios.conguate.preguntas3"
android:background="#222222">


<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageButton5"
    android:background="@drawable/botonpregunta"
    android:layout_centerHorizontal="true" />

<ImageButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/botonpregunta"
    android:id="@+id/imageButton6"
    android:layout_alignTop="@+id/imageButton5"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="143dp" />

<ImageButton
    android:layout_width="wrap_content"
    android:background="@drawable/botonpregunta"
    android:layout_height="wrap_content"
    android:id="@+id/imageButton7"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_marginBottom="104dp" />

enter image description here

这是布局的图片。中间的按钮是唯一一个保持原始尺寸的按钮,当我向上或向下移动它们时,其他按钮似乎会缩小。

1 个答案:

答案 0 :(得分:0)

您在background中使用了ImageButtons图片。

您应该在ImageButton

中将图片用作src

示例:

<ImageButton
    android:id="@+id/imageButton5"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleType="fitCenter" 
    android:adjustViewBounds="true"
    android:src="@drawable/botonpregunta" />