2020-01-04 02:15:35 +00:00
|
|
|
<?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="wrap_content">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/locale_selected_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/locale_item_vertical_margin"
|
|
|
|
android:layout_marginBottom="@dimen/locale_item_vertical_margin"
|
|
|
|
android:contentDescription="@string/a11y_selected_locale_content_description"
|
2020-02-06 13:32:50 +00:00
|
|
|
app:srcCompat="@drawable/mozac_ic_check"
|
2020-01-04 02:15:35 +00:00
|
|
|
android:tint="?primaryText"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/locale_title_text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/locale_item_text_margin_start"
|
|
|
|
android:layout_marginTop="@dimen/locale_item_vertical_margin"
|
|
|
|
android:textColor="?primaryText"
|
2020-01-10 16:09:17 +00:00
|
|
|
android:textAlignment="viewStart"
|
2020-01-04 02:15:35 +00:00
|
|
|
app:layout_goneMarginStart="@dimen/locale_item_text_margin_gone_start"
|
|
|
|
android:textSize="@dimen/locale_item_title_size"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/locale_subtitle_text"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/locale_selected_icon"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
|
|
|
app:layout_goneMarginBottom="@dimen/locale_item_vertical_margin" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/locale_subtitle_text"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/locale_item_text_margin_start"
|
|
|
|
android:layout_marginBottom="@dimen/locale_item_vertical_margin"
|
|
|
|
android:textColor="?secondaryText"
|
2020-01-10 16:09:17 +00:00
|
|
|
android:textAlignment="viewStart"
|
2020-01-04 02:15:35 +00:00
|
|
|
android:textSize="@dimen/locale_item_subtitle_size"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_goneMarginStart="@dimen/locale_item_text_margin_gone_start"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/locale_selected_icon"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/locale_title_text"
|
|
|
|
app:layout_constraintVertical_chainStyle="packed" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|