OSDN Git Service

Olympusのスモール取得サイズを設定可能にする。
[gokigen/PKRemote.git] / app / src / main / res / xml / preferences_olympus.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
3     <PreferenceCategory
4         android:title="@string/pref_cat_application_control">
5
6         <PreferenceScreen
7             android:key="exit_application"
8             android:icon="@drawable/ic_power_settings_new_black_24dp"
9             android:title="@string/pref_exit_power_off_sony" />
10
11         <ListPreference
12             android:title="@string/pref_connection_method"
13             android:entryValues="@array/connection_method_value"
14             android:entries="@array/connection_method"
15             android:key="connection_method"
16             android:defaultValue="OPC"/>
17
18     </PreferenceCategory>
19
20     <PreferenceCategory
21         android:title="@string/pref_cat_camera">
22
23         <ListPreference
24             android:title="@string/pref_download_small_picture_size"
25             android:entryValues="@array/pen_picture_quality_value"
26             android:entries="@array/pen_picture_quality"
27             android:key="pen_download_small_picture_size"
28             android:defaultValue="1600"/>
29
30     </PreferenceCategory>
31
32     <PreferenceCategory
33         android:title="@string/pref_cat_initialize">
34
35         <CheckBoxPreference
36         android:key="auto_connect_to_camera"
37         android:title="@string/pref_auto_connect_camera"
38         android:summary="@string/pref_summary_auto_connect_camera" />
39     </PreferenceCategory>
40
41     <PreferenceCategory
42         android:title="@string/pref_cat_gokigen">
43
44         <Preference
45             android:key="instruction_link"
46             android:title="@string/pref_instruction_manual"
47             android:summary="https://osdn.net/projects/gokigen/wiki/A01d"
48             android:selectable="true">
49             <intent android:action="android.intent.action.VIEW"
50                 android:data="https://osdn.net/projects/gokigen/wiki/A01d" />
51         </Preference>
52
53         <Preference
54             android:key="privacy_policy"
55             android:title="@string/pref_privacy_policy"
56             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
57             android:selectable="true">
58             <intent android:action="android.intent.action.VIEW"
59                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
60         </Preference>
61
62         <PreferenceScreen
63             android:key="debug_info"
64             android:title="@string/pref_degug_info"
65             android:summary="@string/pref_summary_debug_info" />
66
67     </PreferenceCategory>
68 </PreferenceScreen>