林造型使用形狀繪製一個按鈕,這將導致按鈕在擴大一點點或失去它的保證金所以它不與其它按鍵相吻合。任何想法,爲什麼:Android的按鈕形狀繪製保證金
這是我的佈局代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:stretchColumns="*"
android:weightSum="2" >
<TableRow
android:id="@+id/tableRowMem"
android:layout_weight="1" >
<Button
android:id="@+id/buttonA"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="A"/>
<Button
android:id="@+id/buttonB"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="B" />
</TableRow>
<TableRow
android:id="@+id/tableRow1"
android:layout_weight="1" >
<Button
android:id="@+id/buttonC"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:text="C" />
<Button
android:id="@+id/buttonD"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:background="@drawable/buttonred"
android:text="D" />
</TableRow>
</TableLayout>
</LinearLayout>
這是形狀繪製:
<?xml version="1.0" encoding="utf-8"?>
<selector android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<gradient
android:startColor="#FFFF0000"
android:endColor="#80FF00FF"
android:angle="45"/>
</shape>
</item>
</selector>
我在哪裏可以看到該值? – aviran 2013-02-23 07:40:58
在如Photoshop/GIMP之類的圖像編輯器,只需打開每個圖像,檢查大小,他們可能有任何透明墊襯。 – achie 2013-02-23 11:41:57