3

以下是我的actionLayout的按钮。基本上,我的 actionBar 具有 MenuItems,其中一项具有以下按钮作为 actionLayout。

<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/fruit"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="15dp"
    android:layout_marginTop="3dp"
    android:background="#999999"
    android:clickable="true"
    android:text="Apple" />

我的问题是按钮的高度不断填充父项。我想设置边距,但没有任何效果。有谁知道设置边距的简单方法?

4

1 回答 1

4

您可以将按钮包装在FrameLayout

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="match_parent"
             android:layout_height="match_parent">
    <Button android:id="@+id/fruit"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="50dp"
            android:layout_marginLeft="50dp"
            android:layout_marginTop="3dp"
            android:background="#999999"
            android:clickable="true"
            android:text="Apple" />
</FrameLayout>

它看起来如下所示:

设备操作栏

于 2013-07-09T07:30:40.270 回答