92 lines
4.1 KiB
XML
92 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
qsfera Android client application
|
|
|
|
Copyright (C) 2021 ownCloud GmbH.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 2,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<SwitchPreferenceCompat
|
|
app:iconSpaceReserved="false"
|
|
app:key="enable_video_uploads"
|
|
app:summary="@string/prefs_camera_video_upload_summary"
|
|
app:title="@string/prefs_camera_video_upload" />
|
|
<Preference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_status"
|
|
app:selectable="false"
|
|
app:summary="@string/prefs_camera_upload_status_off"
|
|
app:title="@string/prefs_camera_upload_status_title" />
|
|
<ListPreference
|
|
app:dialogTitle="@string/prefs_video_upload_account"
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_account_name"
|
|
app:negativeButtonText=""
|
|
app:title="@string/prefs_video_upload_account"
|
|
app:useSimpleSummaryProvider="true" />
|
|
<Preference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_path"
|
|
app:title="@string/prefs_camera_video_upload_path_title" />
|
|
<Preference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_source_path"
|
|
app:title="@string/prefs_camera_upload_source_path_title" />
|
|
<Preference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_clear_source_paths"
|
|
app:title="@string/prefs_camera_upload_source_paths_clear_title" />
|
|
<ListPreference
|
|
app:defaultValue="NOTHING"
|
|
app:dialogTitle="@string/prefs_camera_upload_behaviour_dialog_title"
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_behaviour"
|
|
app:negativeButtonText=""
|
|
app:title="@string/prefs_camera_upload_behaviour_title"
|
|
app:useSimpleSummaryProvider="true" />
|
|
<Preference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_last_sync"
|
|
app:title="@string/prefs_camera_upload_last_sync_title" />
|
|
<eu.qsfera.android.presentation.settings.LargePreferenceCategory
|
|
android:title="@string/prefs_camera_picture_upload_conditions_title"
|
|
app:iconSpaceReserved="false"
|
|
app:summary="@string/prefs_camera_picture_upload_conditions_summary">
|
|
<CheckBoxPreference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_on_wifi"
|
|
app:summary="@string/prefs_camera_video_upload_on_wifi_summary"
|
|
app:title="@string/prefs_camera_video_upload_on_wifi" />
|
|
<CheckBoxPreference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_allow_roaming"
|
|
app:summary="@string/prefs_camera_upload_allow_roaming_summary"
|
|
app:title="@string/prefs_camera_upload_allow_roaming" />
|
|
<ListPreference
|
|
app:entries="@array/prefs_camera_upload_mobile_data_limit_entries"
|
|
app:entryValues="@array/prefs_camera_upload_mobile_data_limit_values"
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_mobile_data_limit"
|
|
app:negativeButtonText=""
|
|
app:summary="@string/prefs_camera_upload_mobile_data_limit_summary"
|
|
app:title="@string/prefs_camera_upload_mobile_data_limit_title"
|
|
app:useSimpleSummaryProvider="true" />
|
|
<CheckBoxPreference
|
|
app:iconSpaceReserved="false"
|
|
app:key="video_uploads_on_charging"
|
|
app:title="@string/prefs_camera_video_upload_on_charging" />
|
|
</eu.qsfera.android.presentation.settings.LargePreferenceCategory>
|
|
</PreferenceScreen>
|