我试图将 TextView 和 ToggleButton 放在表格行中,但是,它们似乎没有对齐(按钮的顶部开始于 textview 顶部下方约 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>