[android] Changed color of divider.

This commit is contained in:
Dmitry Yunitsky 2016-03-21 14:30:10 +03:00 committed by Sergey Yershov
parent fa3f51cd64
commit efa3de81aa
2 changed files with 13 additions and 4 deletions

View file

@ -35,7 +35,8 @@
android:id="@+id/input"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/editor_edit_place_name_hint"
android:singleLine="true"/>
android:singleLine="true"
android:theme="@style/MwmTheme.Editor.EditText"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>
@ -133,6 +134,7 @@
android:id="@+id/input"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/house"
android:theme="@style/MwmTheme.Editor.EditText"
tools:text="79-59"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>
@ -185,7 +187,7 @@
android:id="@+id/input"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/phone"
android:textAppearance="@style/MwmTextAppearance.Body1"
android:theme="@style/MwmTheme.Editor.EditText"
tools:text="+937 99 92"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>
@ -208,7 +210,7 @@
android:id="@+id/input"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/website"
android:textAppearance="@style/MwmTextAppearance.Body1"
android:theme="@style/MwmTheme.Editor.EditText"
tools:text="maps.me"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>
@ -231,7 +233,7 @@
android:id="@+id/input"
style="@style/MwmWidget.Editor.FieldLayout.EditText"
android:hint="@string/email"
android:textAppearance="@style/MwmTextAppearance.Body1"
android:theme="@style/MwmTheme.Editor.EditText"
tools:text="bugs@maps.me"/>
</com.mapswithme.maps.widget.CustomTextInputLayout>

View file

@ -97,4 +97,11 @@
<item name="bs_closeDrawable">@drawable/bs_ic_clear</item>
<item name="bs_moreDrawable">@drawable/bs_ic_more</item>
</style>
<style name="MwmTheme.Editor"/>
<style name="MwmTheme.Editor.EditText">
<item name="android:colorControlNormal" tools:ignore="NewApi">@color/divider</item>
<item name="colorControlNormal">@color/divider</item>
</style>
</resources>