2011-05-12 43 views

回答

0

您應該使用ImageView或ImageButton而不是Button。

0

給出這些文本之間的空白,因爲您希望該按鈕的寬度爲WRAP_CONTENT。

2

做一個自定義按鈕。

這真的很容易只是這樣做:

<LinearLayout... android:orientation="horizontal" android:onClick="clickButtonMethod" android:clickable="true"> 

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align left" android:gravity="left"> 

<TextView android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:text="Align right" android:gravity="right"> 

</LinearLayout>