如何显示3个按钮(文本+图标居中)

时间:2015-01-17 17:18:25

标签: java android

如何在屏幕上水平等距显示3个按钮(文本+图标居中)?

这是我的代码。 此方法有效但图标不居中

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="3"
    android:layout_below="@id/message">
<Button android:id="@+id/action_like"
    android:text="Like"
    android:layout_width="0dp"
    android:gravity="center"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:textColor="#104e75"
    android:textSize="10sp"
    android:background="#FFFFFF"
    android:drawableLeft="@drawable/ic_action_like" />
<Button
    android:id="@+id/action_comment"
    android:text="Comment"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:gravity="center"
    android:layout_height="wrap_content"
    android:textColor="#104e75"
    android:textSize="10sp"
    android:background="#FFFFFF"
    android:drawableLeft="@drawable/ic_action_comment" />
<Button 3 ....>

0 个答案:

没有答案