* Settings screen is now based on the Android SharedPreferences * Added function key configuration on the Settings screen * Added a setting for toggling the on-screen buttons * Added a dark/light theme setting * Improved translations * Fixed a problem with launching the Settings screen directly from the Android settings * Fixed ignoring keys not actually ignoring them properly
9 lines
270 B
XML
9 lines
270 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle">
|
|
<!-- Gradient Bg for button -->
|
|
<gradient
|
|
android:startColor="#181C18"
|
|
android:endColor="#6B6D6B"
|
|
android:angle="90" />
|
|
</shape>
|