* Switch to androidx for settings * Implement all settings * Added all pages to settings * Add toolbar to settings * Left align all preferences * Migrate to androidx preference manager * Migrate settings functions * Implement dark theme in settings page * Remove old settings files * Remove unused resources Co-authored-by: Amine Bou <510304+aminecmi@users.noreply.github.com>
17 lines
659 B
XML
17 lines
659 B
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">
|
|
|
|
<Preference android:title="@string/issue_tracker_link"
|
|
android:summary="@string/issue_tracker_summary"
|
|
android:key="trackerLink"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
<Preference android:title="@string/source_code"
|
|
android:key="sourceLink"
|
|
app:iconSpaceReserved="false"/>
|
|
|
|
<Preference android:title="@string/translation"
|
|
android:key="translation"
|
|
app:iconSpaceReserved="false"/>
|
|
</PreferenceScreen> |