/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/res/layout/dialog_edit_text.xml
29 строк
1 KB
velichkomarija
[android] Fixed night mode in some edittext fields.
26 янв 2021, 18:06
26 янв 2021, 18:06
61417b2
Код
Авторство
О чём код?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:minWidth="@dimen/width_dialog_base" android:orientation="vertical" android:padding="@dimen/margin_base_plus"> <TextView android:id="@+id/tv__title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="@dimen/margin_base" android:textAppearance="@style/MwmTextAppearance.Title" /> <com.google.android.material.textfield.TextInputLayout android:id="@+id/input" style="?fontBody1" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColorHint="?android:textColorSecondary"> <EditText android:id="@+id/et__input" style="@style/MwmWidget.PlacePage.EditText" android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="text|textCapSentences" android:maxLength="100" android:singleLine="true" /> </com.google.android.material.textfield.TextInputLayout> </LinearLayout>