/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
android/res/layout/item_localized_name.xml
32 строки
1 KB
velichkomarija
[android] Fixed night mode in some edittext fields.
26 янв 2021, 18:06
26 янв 2021, 18:06
61417b2
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/name" android:layout_width="match_parent" android:layout_height="@dimen/editor_height_field" android:animateLayoutChanges="true" android:gravity="center_vertical" android:orientation="horizontal"> <com.google.android.material.textfield.TextInputLayout android:id="@+id/input_layout" style="?fontBody1" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:textColorHint="?android:textColorSecondary"> <EditText android:id="@+id/input" style="@style/MwmWidget.Editor.FieldLayout.EditText" android:hint="@string/editor_edit_place_name_hint" android:inputType="textCapSentences" android:singleLine="true" /> </com.google.android.material.textfield.TextInputLayout> <ImageButton android:id="@+id/delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="?selectableItemBackgroundBorderless" android:padding="@dimen/margin_half" android:src="@drawable/ic_close" android:tint="@color/base_red" /> </LinearLayout>