Skip to content

Commit 9d93fed

Browse files
committed
ref
1 parent 2b80d9d commit 9d93fed

File tree

15 files changed

+208
-845
lines changed

15 files changed

+208
-845
lines changed

android/phiola/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
applicationId "com.github.stsaz.phiola"
99
minSdkVersion 16
1010
targetSdk 33
11-
versionCode 20703
12-
versionName '2.7-beta3'
11+
versionCode 20705
12+
versionName '2.7-beta5'
1313
}
1414

1515
buildFeatures {

android/phiola/src/main/res/layout/settings.xml

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
android:textColor="@color/sett_group" />
1616

1717
<androidx.appcompat.widget.SwitchCompat
18-
android:id="@+id/sw_dark"
18+
android:id="@+id/swDark"
1919
android:layout_width="match_parent"
2020
android:layout_height="wrap_content"
2121
android:layout_margin="@dimen/sett_margin"
@@ -29,54 +29,54 @@
2929
android:text="@string/sett_color"
3030
android:textColor="@color/text" />
3131
<SeekBar
32-
android:id="@+id/sb_color_red"
32+
android:id="@+id/sbColorRed"
3333
android:layout_width="match_parent"
3434
android:layout_height="wrap_content" />
3535
<SeekBar
36-
android:id="@+id/sb_color_green"
36+
android:id="@+id/sbColorGreen"
3737
android:layout_width="match_parent"
3838
android:layout_height="wrap_content" />
3939
<SeekBar
40-
android:id="@+id/sb_color_blue"
40+
android:id="@+id/sbColorBlue"
4141
android:layout_width="match_parent"
4242
android:layout_height="wrap_content" />
4343
<EditText
44-
android:id="@+id/e_color"
44+
android:id="@+id/eColor"
4545
android:layout_width="match_parent"
4646
android:layout_height="wrap_content"
4747
android:layout_marginHorizontal="@dimen/sett_margin"
4848
android:textSize="@dimen/text_editbox" />
4949

5050
<androidx.appcompat.widget.SwitchCompat
51-
android:id="@+id/sw_showfilter"
51+
android:id="@+id/swShowfilter"
5252
android:layout_width="match_parent"
5353
android:layout_height="wrap_content"
5454
android:layout_margin="@dimen/sett_margin"
5555
android:text="@string/sett_show_filter" />
5656

5757
<androidx.appcompat.widget.SwitchCompat
58-
android:id="@+id/sw_showrec"
58+
android:id="@+id/swShowrec"
5959
android:layout_width="match_parent"
6060
android:layout_height="wrap_content"
6161
android:layout_margin="@dimen/sett_margin"
6262
android:text="@string/sett_show_record" />
6363

6464
<androidx.appcompat.widget.SwitchCompat
65-
android:id="@+id/sw_show_playback_marker"
65+
android:id="@+id/swShowPlaybackMarker"
6666
android:layout_width="match_parent"
6767
android:layout_height="wrap_content"
6868
android:layout_margin="@dimen/sett_margin"
6969
android:text="@string/sett_show_playback_marker" />
7070

7171
<androidx.appcompat.widget.SwitchCompat
72-
android:id="@+id/sw_ui_info_in_title"
72+
android:id="@+id/swUiInfoInTitle"
7373
android:layout_width="match_parent"
7474
android:layout_height="wrap_content"
7575
android:layout_margin="@dimen/sett_margin"
7676
android:text="@string/sett_ui_info_in_title" />
7777

7878
<androidx.appcompat.widget.SwitchCompat
79-
android:id="@+id/sw_svc_notif_disable"
79+
android:id="@+id/swSvcNotifDisable"
8080
android:layout_width="match_parent"
8181
android:layout_height="wrap_content"
8282
android:layout_margin="@dimen/sett_margin"
@@ -90,35 +90,35 @@
9090
android:textColor="@color/sett_group" />
9191

9292
<androidx.appcompat.widget.SwitchCompat
93-
android:id="@+id/sw_random"
93+
android:id="@+id/swRandom"
9494
android:layout_width="match_parent"
9595
android:layout_height="wrap_content"
9696
android:layout_margin="@dimen/sett_margin"
9797
android:text="@string/sett_random" />
9898

9999
<androidx.appcompat.widget.SwitchCompat
100-
android:id="@+id/sw_repeat"
100+
android:id="@+id/swRepeat"
101101
android:layout_width="match_parent"
102102
android:layout_height="wrap_content"
103103
android:layout_margin="@dimen/sett_margin"
104104
android:text="@string/sett_repeat_all" />
105105

106106
<androidx.appcompat.widget.SwitchCompat
107-
android:id="@+id/sw_list_add_rm_on_next"
107+
android:id="@+id/swListAddRmOnNext"
108108
android:layout_width="match_parent"
109109
android:layout_height="wrap_content"
110110
android:layout_margin="@dimen/sett_margin"
111111
android:text="@string/sett_list_move_on_next" />
112112

113113
<androidx.appcompat.widget.SwitchCompat
114-
android:id="@+id/sw_list_rm_on_next"
114+
android:id="@+id/swListRmOnNext"
115115
android:layout_width="match_parent"
116116
android:layout_height="wrap_content"
117117
android:layout_margin="@dimen/sett_margin"
118118
android:text="@string/sett_list_rm_on_next" />
119119

120120
<androidx.appcompat.widget.SwitchCompat
121-
android:id="@+id/sw_list_rm_on_err"
121+
android:id="@+id/swListRmOnErr"
122122
android:layout_width="match_parent"
123123
android:layout_height="wrap_content"
124124
android:layout_margin="@dimen/sett_margin"
@@ -132,11 +132,11 @@
132132
android:text="@string/sett_auto_stop"
133133
android:textColor="@color/text" />
134134
<SeekBar
135-
android:id="@+id/sb_play_auto_stop"
135+
android:id="@+id/sbPlayAutoStop"
136136
android:layout_width="match_parent"
137137
android:layout_height="wrap_content" />
138138
<EditText
139-
android:id="@+id/e_auto_stop"
139+
android:id="@+id/eAutoStop"
140140
android:layout_width="match_parent"
141141
android:layout_height="wrap_content"
142142
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -160,7 +160,7 @@
160160
android:text="@string/sett_codepage"
161161
android:textColor="@color/text" />
162162
<Spinner
163-
android:id="@+id/sp_codepage"
163+
android:id="@+id/spCodepage"
164164
android:layout_width="match_parent"
165165
android:layout_height="wrap_content"
166166
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -174,11 +174,11 @@
174174
android:text="@string/sett_auto_skip"
175175
android:textColor="@color/text" />
176176
<SeekBar
177-
android:id="@+id/sb_play_auto_skip"
177+
android:id="@+id/sbPlayAutoSkip"
178178
android:layout_width="match_parent"
179179
android:layout_height="wrap_content" />
180180
<EditText
181-
android:id="@+id/e_auto_skip"
181+
android:id="@+id/eAutoSkip"
182182
android:layout_width="match_parent"
183183
android:layout_height="wrap_content"
184184
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -195,11 +195,11 @@
195195
android:text="@string/sett_auto_skip_tail"
196196
android:textColor="@color/text" />
197197
<SeekBar
198-
android:id="@+id/sb_play_auto_skip_tail"
198+
android:id="@+id/sbPlayAutoSkipTail"
199199
android:layout_width="match_parent"
200200
android:layout_height="wrap_content" />
201201
<EditText
202-
android:id="@+id/e_auto_skip_tail"
202+
android:id="@+id/eAutoSkipTail"
203203
android:layout_width="match_parent"
204204
android:layout_height="wrap_content"
205205
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -208,6 +208,20 @@
208208
android:inputType="text"
209209
android:textSize="@dimen/text_editbox" />
210210

211+
<androidx.appcompat.widget.SwitchCompat
212+
android:id="@+id/swRgNorm"
213+
android:layout_width="match_parent"
214+
android:layout_height="wrap_content"
215+
android:layout_margin="@dimen/sett_margin"
216+
android:text="@string/sett_rg_norm" />
217+
218+
<androidx.appcompat.widget.SwitchCompat
219+
android:id="@+id/swAutoNorm"
220+
android:layout_width="match_parent"
221+
android:layout_height="wrap_content"
222+
android:layout_margin="@dimen/sett_margin"
223+
android:text="@string/sett_auto_norm" />
224+
211225
<androidx.appcompat.widget.SwitchCompat
212226
android:id="@+id/swEqualizer"
213227
android:layout_width="match_parent"
@@ -261,20 +275,6 @@
261275
android:inputType="text"
262276
android:textSize="@dimen/text_editbox" />
263277

264-
<androidx.appcompat.widget.SwitchCompat
265-
android:id="@+id/sw_rg_norm"
266-
android:layout_width="match_parent"
267-
android:layout_height="wrap_content"
268-
android:layout_margin="@dimen/sett_margin"
269-
android:text="@string/sett_rg_norm" />
270-
271-
<androidx.appcompat.widget.SwitchCompat
272-
android:id="@+id/sw_auto_norm"
273-
android:layout_width="match_parent"
274-
android:layout_height="wrap_content"
275-
android:layout_margin="@dimen/sett_margin"
276-
android:text="@string/sett_auto_norm" />
277-
278278
<TextView
279279
android:layout_width="match_parent"
280280
android:layout_height="wrap_content"
@@ -289,7 +289,7 @@
289289
android:text="@string/sett_data_dir"
290290
android:textColor="@color/text" />
291291
<EditText
292-
android:id="@+id/e_data_dir"
292+
android:id="@+id/eDataDir"
293293
android:layout_width="match_parent"
294294
android:layout_height="wrap_content"
295295
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -304,7 +304,7 @@
304304
android:text="@string/sett_trash_dir"
305305
android:textColor="@color/text" />
306306
<EditText
307-
android:id="@+id/e_trash_dir"
307+
android:id="@+id/eTrashDir"
308308
android:layout_width="match_parent"
309309
android:layout_height="wrap_content"
310310
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -314,7 +314,7 @@
314314
android:textSize="@dimen/text_editbox" />
315315

316316
<androidx.appcompat.widget.SwitchCompat
317-
android:id="@+id/sw_file_del"
317+
android:id="@+id/swFileDel"
318318
android:layout_width="match_parent"
319319
android:layout_height="wrap_content"
320320
android:layout_margin="@dimen/sett_margin"
@@ -328,15 +328,15 @@
328328
android:text="@string/sett_library_dir"
329329
android:textColor="@color/text" />
330330
<EditText
331-
android:id="@+id/e_library_dir"
331+
android:id="@+id/eLibraryDir"
332332
android:layout_width="match_parent"
333333
android:layout_height="wrap_content"
334334
android:layout_marginHorizontal="@dimen/sett_margin"
335335
android:inputType="text"
336336
android:textSize="@dimen/text_editbox" />
337337

338338
<androidx.appcompat.widget.SwitchCompat
339-
android:id="@+id/sw_deprecated_mods"
339+
android:id="@+id/swDeprecatedMods"
340340
android:layout_width="match_parent"
341341
android:layout_height="wrap_content"
342342
android:layout_margin="@dimen/sett_margin"
@@ -349,7 +349,7 @@
349349
android:textColor="@color/sett_group" />
350350

351351
<androidx.appcompat.widget.SwitchCompat
352-
android:id="@+id/sw_rec_longclick"
352+
android:id="@+id/swRecLongclick"
353353
android:layout_width="match_parent"
354354
android:layout_height="wrap_content"
355355
android:layout_margin="@dimen/sett_margin"
@@ -364,7 +364,7 @@
364364
android:textColor="@color/text" />
365365

366366
<EditText
367-
android:id="@+id/e_rec_dir"
367+
android:id="@+id/eRecDir"
368368
android:layout_width="match_parent"
369369
android:layout_height="wrap_content"
370370
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -381,7 +381,7 @@
381381
android:text="@string/sett_rec_name"
382382
android:textColor="@color/text" />
383383
<EditText
384-
android:id="@+id/e_rec_name"
384+
android:id="@+id/eRecName"
385385
android:layout_width="match_parent"
386386
android:layout_height="wrap_content"
387387
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -411,7 +411,7 @@
411411
android:text="@string/sett_rec_chan"
412412
android:textColor="@color/text" />
413413
<Spinner
414-
android:id="@+id/sp_rec_channels"
414+
android:id="@+id/spRecChannels"
415415
android:layout_width="match_parent"
416416
android:layout_height="wrap_content"
417417
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -424,11 +424,11 @@
424424
android:text="@string/sett_rec_rate"
425425
android:textColor="@color/text" />
426426
<SeekBar
427-
android:id="@+id/sb_rec_rate"
427+
android:id="@+id/sbRecRate"
428428
android:layout_width="match_parent"
429429
android:layout_height="wrap_content" />
430430
<EditText
431-
android:id="@+id/e_rec_rate"
431+
android:id="@+id/eRecRate"
432432
android:layout_width="match_parent"
433433
android:layout_height="wrap_content"
434434
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -442,7 +442,7 @@
442442
android:text="@string/sett_rec_enc"
443443
android:textColor="@color/text" />
444444
<Spinner
445-
android:id="@+id/sp_rec_enc"
445+
android:id="@+id/spRecEnc"
446446
android:layout_width="match_parent"
447447
android:layout_height="wrap_content"
448448
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -455,11 +455,11 @@
455455
android:text="@string/sett_rec_bitrate"
456456
android:textColor="@color/text" />
457457
<SeekBar
458-
android:id="@+id/sb_rec_bitrate"
458+
android:id="@+id/sbRecBitrate"
459459
android:layout_width="match_parent"
460460
android:layout_height="wrap_content" />
461461
<EditText
462-
android:id="@+id/e_rec_bitrate"
462+
android:id="@+id/eRecBitrate"
463463
android:layout_width="match_parent"
464464
android:layout_height="wrap_content"
465465
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -475,7 +475,7 @@
475475
android:text="@string/sett_rec_buf_len"
476476
android:textColor="@color/text" />
477477
<EditText
478-
android:id="@+id/e_rec_buf_len"
478+
android:id="@+id/eRecBufLen"
479479
android:layout_width="match_parent"
480480
android:layout_height="wrap_content"
481481
android:layout_marginHorizontal="@dimen/sett_margin"
@@ -489,19 +489,19 @@
489489
android:text="@string/sett_rec_until"
490490
android:textColor="@color/text" />
491491
<SeekBar
492-
android:id="@+id/sb_rec_until"
492+
android:id="@+id/sbRecUntil"
493493
android:layout_width="match_parent"
494494
android:layout_height="wrap_content" />
495495
<EditText
496-
android:id="@+id/e_rec_until"
496+
android:id="@+id/eRecUntil"
497497
android:layout_width="match_parent"
498498
android:layout_height="wrap_content"
499499
android:layout_marginHorizontal="@dimen/sett_margin"
500500
android:inputType="number"
501501
android:textSize="@dimen/text_editbox" />
502502

503503
<androidx.appcompat.widget.SwitchCompat
504-
android:id="@+id/sw_rec_danorm"
504+
android:id="@+id/swRecDanorm"
505505
android:layout_width="match_parent"
506506
android:layout_height="wrap_content"
507507
android:layout_margin="@dimen/sett_margin"
@@ -514,26 +514,26 @@
514514
android:text="@string/sett_rec_gain"
515515
android:textColor="@color/text" />
516516
<SeekBar
517-
android:id="@+id/sb_rec_gain"
517+
android:id="@+id/sbRecGain"
518518
android:layout_width="match_parent"
519519
android:layout_height="wrap_content" />
520520
<EditText
521-
android:id="@+id/e_rec_gain"
521+
android:id="@+id/eRecGain"
522522
android:layout_width="match_parent"
523523
android:layout_height="wrap_content"
524524
android:layout_marginHorizontal="@dimen/sett_margin"
525525
android:inputType="text"
526526
android:textSize="@dimen/text_editbox" />
527527

528528
<androidx.appcompat.widget.SwitchCompat
529-
android:id="@+id/sw_rec_exclusive"
529+
android:id="@+id/swRecExclusive"
530530
android:layout_width="match_parent"
531531
android:layout_height="wrap_content"
532532
android:layout_margin="@dimen/sett_margin"
533533
android:text="@string/sett_rec_exclusive" />
534534

535535
<androidx.appcompat.widget.SwitchCompat
536-
android:id="@+id/sw_rec_list_add"
536+
android:id="@+id/swRecListAdd"
537537
android:layout_width="match_parent"
538538
android:layout_height="wrap_content"
539539
android:layout_margin="@dimen/sett_margin"

0 commit comments

Comments
 (0)