У меня есть 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 с текстом флажка.
Проблема в том, что я не знаю точного размера значка флажка. И как ни странно, его размер меняется в зависимости от устройства. Есть ли способ выровнять эти 2 текста?