Когда у меня есть следующий TextView в линейном макете:
<TextView
android:id="@+id/lbl_date"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:ems="5"
android:text="what is up"
android:gravity="center"
android:textColor="#062AEE"
android:textStyle="bold" />
Отображается так, как я хочу:
Однако, когда я добавляю еще какой-то текст, такой, что текст должен переноситься, текст переносится, но добавляется загадочное верхнее поле:
Кто-нибудь знает, почему это? Я попытался установить ряд атрибутов, чтобы избавиться от него, например, android:padding
, android:layout_marginVertical
, android:paddingVertical
, android:layout_margin
, android:layout_marginBottom
, android:lineSpacingExtra
, android:includeFontPadding="false"
. Любые идеи, как избавиться от этого раздражающего пространства?
Спасибо.
Вот еще несколько XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00292525"
android:backgroundTint="#00242020"
android:orientation="horizontal"
android:paddingStart="60dp">
<ImageView
android:id="@+id/img_like"
android:layout_width="35dp"
android:layout_height="45dp"
app:srcCompat="@drawable/date" />
<TextView
android:id="@+id/lbl_date"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:ems="5"
android:text="what is up"
android:gravity="center"
android:textColor="#062AEE"
android:textStyle="bold" />
...
<!-- More ImageViews and TextViews -->
...
</LinearLayout>