Merge pull request #557 from serpentspirale/options_ui_update
Little Options UI update
@ -63,7 +63,7 @@ dependencies {
|
||||
implementation 'commons-codec:commons-codec:1.14'
|
||||
// implementation 'com.wu-man:android-bsf-api:3.1.3'
|
||||
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||||
implementation 'androidx.preference:preference:1.0.0'
|
||||
implementation 'androidx.preference:preference:1.1.1'
|
||||
implementation 'androidx.appcompat:appcompat:1.0.0'
|
||||
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
|
||||
implementation 'com.google.android.material:material:1.0.0'
|
||||
|
Before Width: | Height: | Size: 60 KiB |
Before Width: | Height: | Size: 56 KiB |
BIN
app_pojavlauncher/src/main/res/drawable-hdpi/tap_len.png
Normal file → Executable file
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 13 KiB |
BIN
app_pojavlauncher/src/main/res/drawable-mdpi/btn_scale.png
Executable file
After Width: | Height: | Size: 4.5 KiB |
BIN
app_pojavlauncher/src/main/res/drawable-mdpi/jre_args.png
Executable file
After Width: | Height: | Size: 14 KiB |
BIN
app_pojavlauncher/src/main/res/drawable-mdpi/mouse_pointer.png
Executable file
After Width: | Height: | Size: 8.8 KiB |
BIN
app_pojavlauncher/src/main/res/drawable-mdpi/rm_jre.png
Executable file
After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 6.9 KiB |
@ -15,6 +15,8 @@
|
||||
android:key="timeLongPressTrigger"
|
||||
android:summary="@string/mcl_setting_subtitle_longpresstrigger"
|
||||
android:title="@string/mcl_setting_title_longpresstrigger"
|
||||
app2:showSeekBarValue="true"
|
||||
app2:selectable="false"
|
||||
app2:icon="@drawable/tap_len" />
|
||||
|
||||
<androidx.preference.SwitchPreferenceCompat
|
||||
@ -40,13 +42,18 @@
|
||||
<androidx.preference.SeekBarPreference
|
||||
android:key="buttonscale"
|
||||
android:title="@string/mcl_setting_title_buttonscale"
|
||||
android:summary="@string/mcl_setting_subtitle_buttonscale" />
|
||||
android:summary="@string/mcl_setting_subtitle_buttonscale"
|
||||
app2:showSeekBarValue="true"
|
||||
app2:selectable="false"
|
||||
app2:icon="@drawable/btn_scale"/>
|
||||
|
||||
<androidx.preference.SeekBarPreference
|
||||
android:key="mousescale"
|
||||
android:summary="@string/mcl_setting_subtitle_mousescale"
|
||||
android:title="@string/mcl_setting_title_mousescale"
|
||||
app2:icon="@drawable/mouse_pointer" />
|
||||
app2:showSeekBarValue="true"
|
||||
app2:selectable="false"
|
||||
app2:icon="@drawable/mouse_pointer"/>
|
||||
|
||||
</androidx.preference.PreferenceCategory>
|
||||
|
||||
|