app/src/main/res/xml/pref_general.xml
author Da Risk <da_risk@geekorum.com>
Sat, 25 May 2019 15:58:52 -0700
changeset 194 fc7c3f9fb77c
parent 193 dd82592bda9b
child 220 b8af143057d2
permissions -rw-r--r--
Add ManageFeaturesFragment to test uninstall of feature modules

<!--

    Geekttrss is a RSS feed reader application on the Android Platform.

    Copyright (C) 2017-2019 by Frederic-Charles Barthelery.

    This file is part of Geekttrss.

    Geekttrss is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Geekttrss is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Geekttrss.  If not, see <http://www.gnu.org/licenses/>.

-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:app="http://schemas.android.com/apk/res-auto">

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

        <ListPreference
                android:key="theme"
                android:defaultValue="0"
                android:title="@string/pref_title_theme"
                android:entries="@array/pref_theme_names"
                android:entryValues="@array/pref_theme_values"
                android:negativeButtonText="@null"
                />
    </PreferenceCategory>

    <PreferenceCategory
            android:title="@string/pref_category_development"
            app:isPreferenceVisible="@bool/dev_show_manage_features">

        <Preference
                android:key="manage_features"
                android:title="@string/pref_title_manage_features"
                android:fragment="com.geekorum.ttrss.settings.manage_modules.ManageFeaturesFragment">
        </Preference>
    </PreferenceCategory>

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

        <Preference
                android:key="about_oss"
                android:title="@string/oss_license_title"
                >
            <intent android:targetClass="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
                    android:targetPackage="@string/package_name"
                    />
        </Preference>
        <Preference
                android:key="about_version"
                android:defaultValue="0"
                android:title="@string/pref_title_about_version"
                />
    </PreferenceCategory>

</PreferenceScreen>