OSDN Git Service

pixpro実装。サムネイル画像をキャッシュするサイズを変更できるようにした。(メモリが少ない端末への対策)
[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         <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         <ListPreference
29             android:title="@string/pref_download_small_picture_size"
30             android:entryValues="@array/pen_picture_quality_value"
31             android:entries="@array/pen_picture_quality"
32             android:key="pen_download_small_picture_size"
33             android:defaultValue="1600"/>
34
35         <CheckBoxPreference
36             android:key="olympus_get_screennail_as_small_picture"
37             android:title="@string/pref_olympus_get_screennail_as_small_picture"
38             android:summary="@string/pref_summary_olympus_get_screennail_as_small_picture" />
39
40     </PreferenceCategory>
41
42     <PreferenceCategory
43         android:title="@string/pref_cat_initialize">
44
45         <CheckBoxPreference
46         android:key="auto_connect_to_camera"
47         android:title="@string/pref_auto_connect_camera"
48         android:summary="@string/pref_summary_auto_connect_camera" />
49
50         <EditTextPreference
51             android:key="thumbnail_image_cache_size"
52             android:title="@string/pref_thumbnail_image_cache_size"
53             android:defaultValue="120"
54             android:inputType="number"
55             android:summary="@string/pref_summary_thumbnail_image_cache_size" />
56
57     </PreferenceCategory>
58
59     <PreferenceCategory
60         android:title="@string/pref_cat_gokigen">
61
62         <Preference
63             android:key="instruction_link"
64             android:title="@string/pref_instruction_manual"
65             android:summary="https://osdn.net/projects/gokigen/wiki/PKRemote"
66             android:selectable="true">
67             <intent android:action="android.intent.action.VIEW"
68                 android:data="https://osdn.net/projects/gokigen/wiki/PKRemote" />
69         </Preference>
70
71         <Preference
72             android:key="privacy_policy"
73             android:title="@string/pref_privacy_policy"
74             android:summary="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy"
75             android:selectable="true">
76             <intent android:action="android.intent.action.VIEW"
77                 android:data="https://osdn.net/projects/gokigen/wiki/PrivacyPolicy" />
78         </Preference>
79
80         <PreferenceScreen
81             android:key="debug_info"
82             android:title="@string/pref_degug_info"
83             android:summary="@string/pref_summary_debug_info" />
84
85     </PreferenceCategory>
86 </PreferenceScreen>