下面为什么TextView
当文本换行到第二行时会有额外的空间(在下图中用黄色框突出显示)?我怎样才能删除它?
布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="2"
android:background="@color/green"
>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="1"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:padding="0dp"
android:layout_gravity="center"
android:text="THIS IS FOOOOOOOOOOOOOOO"
android:background="@color/red"
/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center"
android:layout_weight="1"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:padding="0dp"
android:layout_gravity="center"
android:text="THIS IS FOOOOOOOOOOOOOOO"
android:background="@color/red"
/>
</LinearLayout>
</LinearLayout>