mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
* fix navbar transparent * too mutch fixes - Fix Ui Render in android 7. - Fix Navigation bar in android 7 - Rename developer option to advanced option. - Fix crash because setTitle in action bar - New style for switch button * bonk --------- Co-authored-by: gabriel <gabriel>
33 lines
No EOL
1 KiB
XML
33 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:divider="#F00">
|
|
|
|
<Preference
|
|
app:title="@string/app_name"
|
|
app:enabled="false"
|
|
app:summary="1.0"
|
|
app:layout="@layout/preference_simple_about"/>
|
|
|
|
<Preference
|
|
app:key="input"
|
|
app:icon="@drawable/ic_key_a"
|
|
app:title="@string/input"
|
|
app:summary="@string/input_summary"
|
|
app:layout="@layout/preference_start_item"/>
|
|
|
|
<Preference
|
|
app:key="appearance"
|
|
app:icon="@drawable/ic_theme"
|
|
app:title="@string/appearance"
|
|
app:summary="@string/pref_appearance_summary"
|
|
app:layout="@layout/preference_start_item"/>
|
|
|
|
<Preference
|
|
app:key="advanced"
|
|
app:icon="@drawable/ic_code"
|
|
app:title="@string/advanced_options"
|
|
app:summary="@string/pref_advanced_summary"
|
|
app:layout="@layout/preference_start_item"/>
|
|
|
|
</PreferenceScreen> |