Turn on Data Matrix, including separate scan option in Android
[zxing.git] / android / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  Copyright (C) 2008 ZXing authors
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16  -->
17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
18   <PreferenceCategory android:title="@string/preferences_scanning_title">
19     <CheckBoxPreference
20         android:key="preferences_decode_1D"
21         android:defaultValue="true"
22         android:title="@string/preferences_decode_1D_title"/>
23     <CheckBoxPreference
24         android:key="preferences_decode_QR"
25         android:defaultValue="true"
26         android:title="@string/preferences_decode_QR_title"/>
27     <CheckBoxPreference
28         android:key="preferences_decode_Data_Matrix"
29         android:defaultValue="true"
30         android:title="@string/preferences_decode_Data_Matrix_title"/>
31   </PreferenceCategory>
32   <PreferenceCategory android:title="@string/preferences_actions_title">
33     <CheckBoxPreference
34         android:key="preferences_play_beep"
35         android:defaultValue="true"
36         android:title="@string/preferences_play_beep_title"/>
37     <CheckBoxPreference
38         android:key="preferences_vibrate"
39         android:defaultValue="false"
40         android:title="@string/preferences_vibrate_title"/>
41     <CheckBoxPreference
42         android:key="preferences_copy_to_clipboard"
43         android:defaultValue="true"
44         android:title="@string/preferences_copy_to_clipboard_title"/>
45   </PreferenceCategory>
46   <PreferenceCategory android:title="@string/preferences_result_title">
47     <EditTextPreference
48         android:key="preferences_custom_product_search"
49         android:title="@string/preferences_custom_product_search_title"
50         android:summary="@string/preferences_custom_product_search_summary"/>
51   </PreferenceCategory>
52     <PreferenceCategory android:title="@string/preferences_general_title">
53     <CheckBoxPreference
54         android:key="preferences_front_light"
55         android:defaultValue="false"
56         android:title="@string/preferences_front_light_title"
57         android:summary="@string/preferences_front_light_summary"/>
58     <CheckBoxPreference
59         android:key="preferences_bulk_mode"
60         android:defaultValue="false"
61         android:title="@string/preferences_bulk_mode_title"
62         android:summary="@string/preferences_bulk_mode_summary"/>
63   </PreferenceCategory>
64 </PreferenceScreen>