TextViewとToggleButtonをテーブルの行に配置しようとしていますが、整列していないようです(各要素の高さが同じであっても、ボタンの上部はテキストビューの上部から約10px下から始まります。誰か教えてもらえますか?
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TableRow>
<AutoCompleteTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:layout_weight="1"
/>
<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</TableRow>
</TableLayout>