Skip to content

Commit 3cd3cea

Browse files
committed
use normal_text_size at dialog edittexts
1 parent bd7de3d commit 3cd3cea

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ext {
4242
}
4343

4444
dependencies {
45-
implementation 'com.simplemobiletools:commons:3.1.2'
45+
implementation 'com.simplemobiletools:commons:3.2.1'
4646

4747
implementation files('../libs/RootTools.jar')
4848

app/src/main/res/layout/dialog_compress_as.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
android:layout_toLeftOf="@+id/file_extension"
4848
android:inputType="textCapSentences"
4949
android:singleLine="true"
50-
android:textCursorDrawable="@null"/>
50+
android:textCursorDrawable="@null"
51+
android:textSize="@dimen/normal_text_size"/>
5152

5253
<com.simplemobiletools.commons.views.MyTextView
5354
android:id="@+id/file_extension"

app/src/main/res/layout/dialog_create_new.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
android:layout_width="match_parent"
1515
android:layout_height="wrap_content"
1616
android:layout_marginBottom="@dimen/activity_margin"
17-
android:textCursorDrawable="@null"
1817
android:inputType="textCapSentences"
19-
android:singleLine="true"/>
18+
android:singleLine="true"
19+
android:textCursorDrawable="@null"
20+
android:textSize="@dimen/normal_text_size"/>
2021

2122
<RadioGroup
2223
android:id="@+id/dialog_radio_group"

app/src/main/res/layout/dialog_save_as.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
android:layout_height="wrap_content"
3030
android:layout_marginBottom="@dimen/activity_margin"
3131
android:singleLine="true"
32-
android:textCursorDrawable="@null"/>
32+
android:textCursorDrawable="@null"
33+
android:textSize="@dimen/normal_text_size"/>
3334

3435
<com.simplemobiletools.commons.views.MyTextView
3536
android:id="@+id/save_as_extension_label"
@@ -43,6 +44,7 @@
4344
android:layout_height="wrap_content"
4445
android:layout_marginBottom="@dimen/activity_margin"
4546
android:singleLine="true"
46-
android:textCursorDrawable="@null"/>
47+
android:textCursorDrawable="@null"
48+
android:textSize="@dimen/normal_text_size"/>
4749

4850
</LinearLayout>

0 commit comments

Comments
 (0)