OSDN Git Service

Wifi設定をPreferenceから出せるようにした。Nikonの接続シーケンスまで確認。
[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         <!--
41
42         <PreferenceScreen
43             android:key="sony_api_list"
44             android:title="@string/pref_sony_api_list"
45             android:summary="@string/pref_summary_sony_api_list" />
46
47         <CheckBoxPreference
48             android:key="use_smartphone_transfer_mode"
49             android:title="@string/pref_sony_use_smartphone_transfer"
50             android:summary="@string/pref_summary_sony_use_smartphone_transfer" />
51
52         <CheckBoxPreference
53             android:key="get_small_picture_as_vga"
54             android:title="@string/pref_get_small_picture_as_vga"
55             android:summary="@string/pref_summary_get_small_picture_as_vga" />
56
57                 <CheckBoxPreference
58                     android:key="capture_both_camera_and_live_view"
59                     android:title="@string/pref_capture_both_camera_and_live_view" />
60         -->
61     </PreferenceCategory>
62
63     <PreferenceCategory
64         android:title="@string/pref_cat_initialize">
65
66         <CheckBoxPreference
67         android:key="auto_connect_to_camera"
68         android:title="@string/pref_auto_connect_camera"
69         android:summary="@string/pref_summary_auto_connect_camera" />
70     </PreferenceCategory>
71
72     <PreferenceCategory
73         android:title="@string/pref_cat_gokigen">
74
75         <Preference
76             android:key="instruction_link"
77             android:title="@string/pref_instruction_manual"
78             android:summary="https://osdn.net/projects/gokigen/wiki/A01d"
79             android:selectable="true">
80             <intent android:action="android.intent.action.VIEW"
81                 android:data="https://osdn.net/projects/gokigen/wiki/A01d" />
82         </Preference>
83
84         <Preference
85             android:key="privacy_policy"
86             android:title="@string/pref_privacy_policy"
87             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
88             android:selectable="true">
89             <intent android:action="android.intent.action.VIEW"
90                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
91         </Preference>
92
93         <PreferenceScreen
94             android:key="debug_info"
95             android:title="@string/pref_degug_info"
96             android:summary="@string/pref_summary_debug_info" />
97
98     </PreferenceCategory>
99 </PreferenceScreen>