OSDN Git Service

Wifi設定をPreferenceから出せるようにした。Nikonの接続シーケンスまで確認。
[gokigen/PKRemote.git] / app / src / main / res / xml / preferences_fuji_x.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_fujix" />
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_initialize">
27
28         <CheckBoxPreference
29             android:key="auto_connect_to_camera"
30             android:title="@string/pref_auto_connect_camera"
31             android:summary="@string/pref_summary_auto_connect_camera" />
32     </PreferenceCategory>
33
34 <!--
35     <PreferenceCategory
36         android:title="@string/pref_cat_camera">
37
38         <CheckBoxPreference
39             android:key="fujix_display_camera_view"
40             android:title="@string/pref_fujix_display_camera_view"
41             android:summary="@string/pref_fujix_display_camera_view_summary"/>
42
43         <EditTextPreference
44             android:key="fujix_focus_xy"
45             android:title="@string/pref_fujix_focus_xy"
46             android:defaultValue="7,7"
47             android:summary="@string/pref_summary_fujix_focus_xy" />
48
49         <EditTextPreference
50             android:key="fujix_liveview_wait"
51             android:title="@string/pref_fujix_liveview_wait"
52             android:defaultValue="80"
53             android:summary="@string/pref_summary_fujix_liveview_wait" />
54
55         <EditTextPreference
56             android:key="fujix_command_polling_wait"
57             android:title="@string/pref_fujix_command_polling_wait"
58             android:defaultValue="500"
59             android:summary="@string/pref_summary_fujix_command_polling_wait" />
60
61         <CheckBoxPreference
62             android:key="capture_both_camera_and_live_view"
63             android:title="@string/pref_capture_both_camera_and_live_view" />
64
65         <CheckBoxPreference
66             android:key="fujix_connection_for_read"
67             android:title="@string/pref_fujix_connection_for_read"
68             android:summary="@string/pref_fujix_connection_for_read_summary"/>
69
70     </PreferenceCategory>
71 -->
72
73     <PreferenceCategory
74         android:title="@string/pref_cat_others">
75         <Preference
76             android:key="special_thanks"
77             android:title="@string/pref_special_thanks"
78             android:summary="https://github.com/hkr/fuji-cam-wifi-tool"
79             android:selectable="true">
80             <intent android:action="android.intent.action.VIEW"
81                 android:data="https://github.com/hkr/fuji-cam-wifi-tool" />
82         </Preference>
83
84     </PreferenceCategory>
85
86     <PreferenceCategory
87         android:title="@string/pref_cat_gokigen">
88
89         <Preference
90             android:key="instruction_link"
91             android:title="@string/pref_instruction_manual"
92             android:summary="https://osdn.net/projects/gokigen/wiki/A01d"
93             android:selectable="true">
94             <intent android:action="android.intent.action.VIEW"
95                 android:data="https://osdn.net/projects/gokigen/wiki/A01d" />
96         </Preference>
97
98         <Preference
99             android:key="privacy_policy"
100             android:title="@string/pref_privacy_policy"
101             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
102             android:selectable="true">
103             <intent android:action="android.intent.action.VIEW"
104                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
105         </Preference>
106
107         <PreferenceScreen
108             android:key="debug_info"
109             android:title="@string/pref_degug_info"
110             android:summary="@string/pref_summary_debug_info" />
111
112     </PreferenceCategory>
113 </PreferenceScreen>