我使用可绘制形状设置按钮的样式,这会导致按钮过度扩展一点或失去它的边距,因此它不能与其他按钮很好地对齐。知道为什么:
这是我的布局代码:
<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>