OSDN Git Service

Pentax DSLR機で、AFを動作後シャッターを切る設定ができるよう変更する。(でも、再起動必要...)
[gokigen/Gr2Control.git] / app / src / main / res / xml / preferences_ricoh_gr2.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" />
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="RICOH_GR2"/>
17
18     </PreferenceCategory>
19
20     <PreferenceCategory
21         android:title="@string/pref_cat_camera">
22
23         <CheckBoxPreference
24             android:key="capture_both_camera_and_live_view"
25             android:title="@string/pref_capture_both_camera_and_live_view" />
26
27     </PreferenceCategory>
28
29     <PreferenceCategory
30         android:title="@string/pref_cat_initialize">
31
32         <CheckBoxPreference
33             android:key="gr2_display_camera_view"
34             android:title="@string/pref_gr2_display_camera_view"
35             android:summary="@string/pref_gr2_display_camera_view_summary"/>
36
37         <CheckBoxPreference
38             android:key="gr2_lcd_sleep"
39             android:title="@string/pref_gr2_lcd_sleep" />
40
41         <CheckBoxPreference
42             android:key="auto_connect_to_camera"
43             android:title="@string/pref_auto_connect_camera"
44             android:summary="@string/pref_summary_auto_connect_camera" />
45     </PreferenceCategory>
46
47     <PreferenceCategory
48         android:title="@string/pref_cat_others">
49
50         <CheckBoxPreference
51             android:key="share_after_save"
52             android:title="@string/pref_call_share_after_save" />
53
54         <CheckBoxPreference
55             android:key="use_playback_menu"
56             android:title="@string/pref_use_playback_menu"
57             />
58
59         <CheckBoxPreference
60             android:key="use_gr2_special_command"
61             android:title="@string/pref_use_gr2_special_command"
62             android:summary="@string/summary_use_gr2_special_command"
63             />
64
65         <CheckBoxPreference
66             android:key="pentax_capture_after_auto_focus"
67             android:title="@string/pref_pentax_capture_after_auto_focus"
68             android:summary="@string/summary_pentax_capture_after_auto_focus"
69             />
70
71     </PreferenceCategory>
72
73     <PreferenceCategory
74         android:title="@string/pref_cat_gokigen">
75
76         <Preference
77             android:key="instruction_link"
78             android:title="@string/pref_instruction_manual"
79             android:summary="https://osdn.net/projects/gokigen/wiki/GR2Control"
80             android:selectable="true">
81             <intent android:action="android.intent.action.VIEW"
82                 android:data="https://osdn.net/projects/gokigen/wiki/GR2Control" />
83         </Preference>
84
85         <Preference
86             android:key="privacy_policy"
87             android:title="@string/pref_privacy_policy"
88             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
89             android:selectable="true">
90             <intent android:action="android.intent.action.VIEW"
91                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
92         </Preference>
93
94         <PreferenceScreen
95             android:key="debug_info"
96             android:title="@string/pref_degug_info"
97             android:summary="@string/pref_summary_debug_info" />
98
99     </PreferenceCategory>
100 </PreferenceScreen>