我有以下表格佈局。如何在Android桌面佈局中對齊圖像按鈕?
<TableLayout
android:id="@+id/tlImpEventContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_span="1"
android:stretchColumns="*" >
<TableRow
android:id="@+id/trStatusCode"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:weightSum="1" >
<TextView
android:id="@+id/tvStatusCode"
android:text="@string/statuscode"
android:layout_weight="0.5"
style="@style/ContentTextViewValue"
android:textColor="@color/gpsblue"
android:layout_marginLeft="5dp" />
<TextView
android:id="@+id/tvStatusCodeAns"
android:layout_weight="0.5"
style="@style/ContentTextViewValue"
android:text="@string/app_name"
/>
</TableRow>
<TableRow
android:id="@+id/trMsg"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:weightSum="1" >
<TextView
android:id="@+id/tvMsg"
android:text="@string/message"
android:layout_span="1"
android:layout_weight="1"
style="@style/ContentTextViewValue"
android:textColor="@color/gpsblue"
android:layout_marginLeft="5dp" />
</TableRow>
<TableRow
android:id="@+id/trMsgAns"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:weightSum="1" >
<EditText
android:id="@+id/tvMsgAns"
android:inputType="textMultiLine"
android:lines="5"
android:minLines="5"
android:gravity="top|left"
android:layout_span="1"
android:maxLines="10"
android:scrollbars="vertical"
android:layout_weight="1"
style="@style/ContentTextViewValue"
android:layout_marginLeft="5dp"
/>
</TableRow>
<TableRow
android:id="@+id/trSend"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:weightSum="1" >
<ImageButton
android:id="@+id/ivSend"
android:src="@drawable/gts_send"
android:contentDescription="@string/send"
android:layout_weight="1"
android:layout_span="1"
style="@style/ContentTextViewValue"
android:textColor="@color/gpsblue"
android:textStyle="bold"
android:layout_marginLeft="5dp" />
</TableRow>
我的代碼看起來像上面的例子。 這裏我的最後一個表格行有一個圖像按鈕。當我添加這個背景顏色時也添加這個表格行。所以我的頁面看起來像下面的圖片。
張貼您的xml文件: – Piyush