OSDN Git Service

とりあえず、Power Shot Zoomから画像をダウンロードできるところまで。
[gokigen/PKRemote.git] / app / src / main / res / xml / preferences_canon.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         <PreferenceScreen
19             android:key="wifi_settings"
20             android:title="@string/pref_wifi_settings"
21             android:summary="@string/pref_summary_wifi_settings" />
22
23     </PreferenceCategory>
24
25     <PreferenceCategory
26         android:title="@string/pref_cat_camera">
27
28         <CheckBoxPreference
29             android:key="canon_get_screennail_as_small_picture"
30             android:title="@string/pref_canon_get_screennail_as_small_picture"
31             android:summary="@string/pref_summary_canon_get_screennail_as_small_picture" />
32
33         <EditTextPreference
34             android:key="canon_raw_suffix"
35             android:title="@string/pref_canon_raw_suffix"
36             android:defaultValue="CR2"
37             android:inputType="number"
38             android:summary="@string/pref_summary_canon_raw_suffix" />
39
40         <EditTextPreference
41             android:key="canon_receive_wait"
42             android:title="@string/pref_canon_receive_wait"
43             android:defaultValue="20"
44             android:summary="@string/pref_summary_canon_receive_wait" />
45
46         <EditTextPreference
47             android:key="canon_host_ip"
48             android:title="@string/pref_canon_host_ip"
49             android:defaultValue="192.168.0.1"
50             android:summary="@string/pref_summary_canon_host_ip" />
51
52         <ListPreference
53             android:title="@string/pref_canon_connection_mode"
54             android:summary="@string/pref_summary_canon_connection_mode"
55             android:entryValues="@array/canon_connection_mode_value"
56             android:entries="@array/canon_connection_mode"
57             android:key="canon_connection_mode"
58             android:defaultValue="0"/>
59
60         <!--
61
62         <PreferenceScreen
63             android:key="sony_api_list"
64             android:title="@string/pref_sony_api_list"
65             android:summary="@string/pref_summary_sony_api_list" />
66
67         <CheckBoxPreference
68             android:key="use_smartphone_transfer_mode"
69             android:title="@string/pref_sony_use_smartphone_transfer"
70             android:summary="@string/pref_summary_sony_use_smartphone_transfer" />
71
72         <CheckBoxPreference
73             android:key="get_small_picture_as_vga"
74             android:title="@string/pref_get_small_picture_as_vga"
75             android:summary="@string/pref_summary_get_small_picture_as_vga" />
76
77                 <CheckBoxPreference
78                     android:key="capture_both_camera_and_live_view"
79                     android:title="@string/pref_capture_both_camera_and_live_view" />
80         -->
81     </PreferenceCategory>
82
83     <PreferenceCategory
84         android:title="@string/pref_cat_initialize">
85
86         <CheckBoxPreference
87         android:key="auto_connect_to_camera"
88         android:title="@string/pref_auto_connect_camera"
89         android:summary="@string/pref_summary_auto_connect_camera" />
90
91         <EditTextPreference
92             android:key="thumbnail_image_cache_size"
93             android:title="@string/pref_thumbnail_image_cache_size"
94             android:defaultValue="120"
95             android:inputType="number"
96             android:summary="@string/pref_summary_thumbnail_image_cache_size" />
97
98     </PreferenceCategory>
99
100     <PreferenceCategory
101         android:title="@string/pref_cat_gokigen">
102
103         <Preference
104             android:key="instruction_link"
105             android:title="@string/pref_instruction_manual"
106             android:summary="https://osdn.net/projects/gokigen/wiki/PKRemote"
107             android:selectable="true">
108             <intent android:action="android.intent.action.VIEW"
109                 android:data="https://osdn.net/projects/gokigen/wiki/PKRemote" />
110         </Preference>
111
112         <Preference
113             android:key="privacy_policy"
114             android:title="@string/pref_privacy_policy"
115             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
116             android:selectable="true">
117             <intent android:action="android.intent.action.VIEW"
118                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
119         </Preference>
120
121         <PreferenceScreen
122             android:key="debug_info"
123             android:title="@string/pref_degug_info"
124             android:summary="@string/pref_summary_debug_info" />
125
126     </PreferenceCategory>
127 </PreferenceScreen>