我在嘗試在我的佈局中使用圖像按鈕時出現問題。當我添加第一個圖像按鈕時,一切正常,但是當我添加第二個時,第一個縮小,這取決於我使用的佈局嗎?我設置了相對佈局,但我不知道如何保持每個按鈕的大小相同。如何爲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" />
這是佈局的圖片。中間的按鈕是唯一能夠保持其原始尺寸的按鈕,而其他按鈕在我向上或向下移動時似乎會縮小。
你能後的XML代碼? – Sameer
如果您需要幫助修復,請使用您的代碼編輯問題! – OBX
@Sameer我上傳了代碼!對不起,我花了這麼長時間 – user3390742