次の基本的な XML があります。
<?xml version="1.0" encoding="utf-8"?>
<TableRow
android:background="#FF0000"
android:layout_weight="0.8">
<TextView
android:text="Bottom menu" />
</TableRow>
<TableRow
android:background="#0000FF"
android:layout_weight="0.2">
<Button
android:text="Prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</TableRow>
エミュレーターの TableRow の高さは約 3cm です。Button を TextView に変更すると、2.5cm になります。TableRow のサイズが自動的に大きくなる理由を誰か説明できますか?