Android - выровнять вид с текстом флажка - PullRequest
0 голосов
/ 02 июля 2019

У меня есть EditText под флажком.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <CheckBox
        android:id="@+id/confirmation_receipt"
        style="@style/AppTheme.Checkbox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingStart="@dimen/content_margin_s"
        android:paddingEnd="0dp"
        android:text="@string/bill_payment_confirmation_receipt" />

    <EditText
        android:id="@+id/confirmation_receipt_customer_email"
        style="@style/AppTheme.EditText.Info"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/content_margin_xxxl"
        android:hint="@string/bill_payment_confirmation_receipt_customer_email_hint"
        android:imeOptions="actionDone"
        android:inputType="textEmailAddress|textNoSuggestions"
        android:selectAllOnFocus="true"
        android:visibility="gone" />

</LinearLayout>

Если флажок установлен, отображается текст редактирования.

Я хотел бы выровнять представление EditText с текстом флажка. enter image description here

Проблема в том, что я не знаю точного размера значка флажка. И как ни странно, его размер меняется в зависимости от устройства. Есть ли способ выровнять эти 2 текста?

1 Ответ

0 голосов
/ 02 июля 2019

Вы можете использовать простой хак для достижения этой цели.То, что я сделал, это выделил флажок и его текст для отдельного просмотра текста.Затем установите то же значение левого поля для вновь добавленного текстового представления и текста редактирования

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <TextView
        android:text="@string/bill_payment_confirmation_receipt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginStart="40dp"/>

    <CheckBox
        android:id="@+id/confirmation_receipt"
        style="@style/AppTheme.Checkbox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</RelativeLayout>

<EditText
    android:id="@+id/confirmation_receipt_customer_email"
    style="@style/AppTheme.EditText.Info"
    android:layout_marginStart="40dp"
    android:hint="@string/bill_payment_confirmation_receipt_customer_email_hint"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:imeOptions="actionDone"
    android:inputType="textEmailAddress|textNoSuggestions"
    android:selectAllOnFocus="true"
    android:visibility="gone" />

</LinearLayout>
...