安卓开发线性布局组件之间有间隙

<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>

image.png
如果我将
android:layout_height="wrap_content"设置成android:layout_height="54dp"
就会出现如下的效果
image.png
为什么

阅读 3k
1 个回答
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题