Текстовая базовая линия текста, как конец выравнивания - PullRequest
0 голосов
/ 30 января 2020

У меня есть интерактивное текстовое представление с эффектом заполнения и пульсации в макете ограничения. Как я могу выровнять текст textview справа от содержания ограничения? В настоящее время из-за заполнения (используется для эффекта ряби) текст не выравнивается по отношению к остальному содержимому. Это аналогично базовому свойству

enter image description here

Макет:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    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">

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/glEnd"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_end="@dimen/some_margin"
        />

    <Button
        android:id="@+id/btnAction"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintEnd_toEndOf="@id/glEnd"
        android:background="@drawable/background_home_card_bottomright"
        android:text="@string/directions"/>

    <Button
        android:id="@+id/btnSeeAll"
        style="@style/button"
        android:text="@string/see_all"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@id/btnAction"
        app:layout_constraintEnd_toEndOf="@id/glEnd"/>

</androidx.constraintlayout.widget.ConstraintLayout>

Стиль кнопки содержит отступы и фон:

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/rippleColor"
    android:exitFadeDuration="@android:integer/config_shortAnimTime">
    <item>
        <shape android:shape="rectangle">
            <solid android:color="@android:color/transparent"/>
        </shape>
    </item>
</ripple>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...