make sure edittexts use normal_text_size

This commit is contained in:
tibbi
2017-11-17 10:16:07 +01:00
parent 86a57ace6d
commit 29bb810681
4 changed files with 10 additions and 6 deletions

View File

@@ -22,7 +22,8 @@
android:ems="6" android:ems="6"
android:inputType="number" android:inputType="number"
android:maxLength="5" android:maxLength="5"
android:textCursorDrawable="@null"/> android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
<RadioGroup <RadioGroup
android:id="@+id/dialog_radio_view" android:id="@+id/dialog_radio_view"

View File

@@ -46,7 +46,8 @@
android:layout_marginBottom="@dimen/activity_margin" android:layout_marginBottom="@dimen/activity_margin"
android:layout_marginLeft="@dimen/activity_margin" android:layout_marginLeft="@dimen/activity_margin"
android:paddingRight="@dimen/small_margin" android:paddingRight="@dimen/small_margin"
android:paddingTop="@dimen/normal_margin"/> android:paddingTop="@dimen/normal_margin"
android:textSize="@dimen/normal_text_size"/>
<com.simplemobiletools.commons.views.MyAppCompatCheckbox <com.simplemobiletools.commons.views.MyAppCompatCheckbox
android:id="@+id/export_events_checkbox" android:id="@+id/export_events_checkbox"
@@ -65,12 +66,12 @@
<ImageView <ImageView
android:id="@+id/export_events_divider" android:id="@+id/export_events_divider"
android:importantForAccessibility="no"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="1px" android:layout_height="1px"
android:layout_marginBottom="@dimen/medium_margin" android:layout_marginBottom="@dimen/medium_margin"
android:layout_marginTop="@dimen/medium_margin" android:layout_marginTop="@dimen/medium_margin"
android:background="@color/darker_divider"/> android:background="@color/darker_divider"
android:importantForAccessibility="no"/>
<com.simplemobiletools.commons.views.MyTextView <com.simplemobiletools.commons.views.MyTextView
android:id="@+id/export_events_pick_types_label" android:id="@+id/export_events_pick_types_label"

View File

@@ -42,7 +42,8 @@
android:layout_marginLeft="@dimen/repeat_type_margin_start" android:layout_marginLeft="@dimen/repeat_type_margin_start"
android:layout_marginStart="@dimen/repeat_type_margin_start" android:layout_marginStart="@dimen/repeat_type_margin_start"
android:inputType="number" android:inputType="number"
android:maxLength="5"/> android:maxLength="5"
android:textSize="@dimen/normal_text_size"/>
<com.simplemobiletools.commons.views.MyCompatRadioButton <com.simplemobiletools.commons.views.MyCompatRadioButton
android:id="@+id/repeat_type_forever" android:id="@+id/repeat_type_forever"

View File

@@ -24,6 +24,7 @@
android:ems="6" android:ems="6"
android:inputType="number" android:inputType="number"
android:maxLength="5" android:maxLength="5"
android:paddingTop="@dimen/normal_margin"/> android:paddingTop="@dimen/normal_margin"
android:textSize="@dimen/normal_text_size"/>
</LinearLayout> </LinearLayout>