use normal_text_size at dialog edittexts

This commit is contained in:
tibbi 2017-12-06 21:11:27 +01:00
parent bd7de3d962
commit 3cd3cea76f
4 changed files with 10 additions and 6 deletions

View File

@ -42,7 +42,7 @@ ext {
}
dependencies {
implementation 'com.simplemobiletools:commons:3.1.2'
implementation 'com.simplemobiletools:commons:3.2.1'
implementation files('../libs/RootTools.jar')

View File

@ -47,7 +47,8 @@
android:layout_toLeftOf="@+id/file_extension"
android:inputType="textCapSentences"
android:singleLine="true"
android:textCursorDrawable="@null"/>
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/file_extension"

View File

@ -14,9 +14,10 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"
android:textCursorDrawable="@null"
android:inputType="textCapSentences"
android:singleLine="true"/>
android:singleLine="true"
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
<RadioGroup
android:id="@+id/dialog_radio_group"

View File

@ -29,7 +29,8 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"
android:textCursorDrawable="@null"/>
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/save_as_extension_label"
@ -43,6 +44,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/activity_margin"
android:singleLine="true"
android:textCursorDrawable="@null"/>
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
</LinearLayout>