Skip to content

Commit

Permalink
Forgot resources
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Apr 19, 2020
1 parent b2ba25f commit 929c0c2
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 9 deletions.
12 changes: 10 additions & 2 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,21 @@
<string name="settings_samsung_dex">Samsung Dex</string>
<string name="settings_immersive_apps">Immersive Apps</string>
<string name="settings_immersive_apps_sum">Apps for which to remove window titlebar when maximized.</string>
<string name="settings_hide_dex_logo">Hide Dex Logo</string>
<string name="settings_hide_dex_logo_sum">Removes the Dex logo from the taskbar.</string>
<string name="settings_fix_keyboard">Fix Keyboard</string>
<string name="settings_fix_keyboard_sum">Enables floating mode for non qwerty keyboard layouts too.</string>
<string name="settings_fix_sbrowser">Fix Samsung Browser</string>
<string name="settings_fix_sbrowser_sum">Enables secret mode and disable always visible scroll bar.</string>
<string name="settings_fix_weather">Fix Weather</string>
<string name="settings_fix_weather_sum">Keep displaying weather icon in the statusbar.</string>
<string name="settings_fix_squid">Fix Squid</string>
<string name="settings_fix_squid_sum">Make it Premium and some small fixes.</string>

<string name="settings_samsung_dex_taskbar">Dex Taskbar</string>
<string name="settings_hide_dex_logo">Hide Dex Logo</string>
<string name="settings_hide_dex_logo_sum">Removes the Dex logo from the taskbar.</string>
<string name="settings_hide_nosim_icon">Hide NoSIM Icon</string>
<string name="settings_hide_nosim_icon_sum">Removes the NoSIM icon from statusbar.</string>
<string name="settings_hide_app_overflow_buttons">Hide App Overflow Buttons</string>
<string name="settings_hide_app_overflow_buttons_sum">Removes left and right arrows when to many apps are open.</string>

</resources>
40 changes: 33 additions & 7 deletions res/xml/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,6 @@
android:key="immersiveApps"
android:dialogTitle="@string/settings_immersive_apps" />

<CheckBoxPreference
android:name="@string/settings_hide_dex_logo"
android:summary="@string/settings_hide_dex_logo_sum"
android:defaultValue="true"
android:title="@string/settings_hide_dex_logo"
android:key="hideDexLogo" />

<CheckBoxPreference
android:name="@string/settings_fix_keyboard"
android:summary="@string/settings_fix_keyboard_sum"
Expand All @@ -40,6 +33,39 @@
android:title="@string/settings_fix_weather"
android:key="fixWeather" />

<CheckBoxPreference
android:name="@string/settings_fix_squid"
android:summary="@string/settings_fix_squid_sum"
android:defaultValue="true"
android:title="@string/settings_fix_squid"
android:key="fixSquid" />

</PreferenceCategory>

<PreferenceCategory
android:title="@string/settings_samsung_dex_taskbar">

<CheckBoxPreference
android:name="@string/settings_hide_dex_logo"
android:summary="@string/settings_hide_dex_logo_sum"
android:defaultValue="true"
android:title="@string/settings_hide_dex_logo"
android:key="hideDexLogo" />

<CheckBoxPreference
android:name="@string/settings_hide_nosim_icon"
android:summary="@string/settings_hide_nosim_icon_sum"
android:defaultValue="true"
android:title="@string/settings_hide_nosim_icon"
android:key="hideNoSIMIcon" />

<CheckBoxPreference
android:name="@string/settings_hide_app_overflow_buttons"
android:summary="@string/settings_hide_app_overflow_buttons_sum"
android:defaultValue="true"
android:title="@string/settings_hide_app_overflow_buttons"
android:key="hideAppOverflowButtons" />

</PreferenceCategory>

</PreferenceScreen>

0 comments on commit 929c0c2

Please sign in to comment.