У меня есть поле даты, которое отлично отображается на устройствах LTR (android 7.1.1)
Проблема в том, что на устройствах RTL содержимое поля даты зеркально отражается
Так что на устройствах в США дата будетотображаются нормально: 03/14/2019
На устройствах с ОС RTL дата будет выглядеть следующим образом: 2019/14/03
Код для удержания TextViewзначение:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/inspect_date"
android:textSize="18sp" />
<com.xerox.printerinspection.controls.DateEditText
android:id="@+id/edit_inspect_date"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/lightGray"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:drawableEnd="@android:drawable/ic_menu_my_calendar" />
</LinearLayout>
Я устанавливаю дату следующим образом:
Date currentDate = Calendar.getInstance().getTime();
inspectionDateEdit.setDate(currentDate);
Каким будет правильный способ решения этой проблемы?
ОБНОВЛЕНИЕ
Родительский тег frag_detail.xml выглядит следующим образом:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/lightGray"
android:textDirection="locale"
tools:context="com.xerox.MainActivity">