<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="112dp"
android:layout_height="54dp"
android:text="计算结果:"
android:textSize="25sp" />
<EditText
android:id="@+id/output"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null"
tools:ignore="SpeakableTextPresentCheck" />
</LinearLayout>
如果我将
android:layout_height="wrap_content"设置成android:layout_height="54dp"
就会出现如下的效果
为什么
参考资料:LinearLayout中的baselineAligned属性