刪除按鈕的額外空間有下面的按鈕這個額外的空間,我不知道爲什麼會在那裏。我嘗試了一切,尋找有這種問題的人,可惜我什麼也沒找到。這是要麼刪除額外的空間和/或降低完美對齊。
這裏是我的xml文件
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/button_layout"
android:layout_alignParentTop="true"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#262626"
android:gravity="center">
<Button
android:id="@+id/receipts_button"
android:background="@android:color/transparent"
android:drawableTop="@drawable/preview_save_icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button android:id="@+id/capture_button"
android:background="@android:color/transparent"
android:drawableTop="@drawable/preview_upload_icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button android:id="@+id/settings_button"
android:background="@android:color/transparent"
android:drawableTop="@drawable/preview_discard_icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
謝謝。這幫助我很多:) – kev
只是以防萬一你還沒有嘗試它下面的RKN答案也會集中圖標,但它也會拉伸它們來填充整個空間。你可以根據你想要的行爲來玩弄背景和src。 – caiocpricci2