1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2008 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 18 android:orientation="vertical" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 > 22 <CheckBox 23 android:id="@+id/debug_logging" 24 android:layout_width="wrap_content" 25 android:layout_height="wrap_content" 26 android:text="@string/debug_enable_debug_logging_label" 27 /> 28 <CheckBox 29 android:id="@+id/exchange_logging" 30 android:layout_width="wrap_content" 31 android:layout_height="wrap_content" 32 android:text="@string/debug_enable_verbose_logging_label" 33 /> 34 <CheckBox 35 android:id="@+id/file_logging" 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" 38 android:text="@string/debug_enable_file_logging_label" 39 /> 40 <Button 41 android:id="@+id/clear_webview_cache" 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" 44 android:text="@string/debug_clear_webview_cache" 45 /> 46 <Button 47 android:id="@+id/clear_migration_state" 48 android:layout_width="wrap_content" 49 android:layout_height="wrap_content" 50 android:text="@string/debug_clear_migration_state" 51 /> 52 <CheckBox 53 android:id="@+id/debug_force_one_minute_refresh" 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:text="@string/debug_force_one_minute_refresh_label" 57 /> 58 <CheckBox 59 android:id="@+id/debug_enable_strict_mode" 60 android:layout_width="wrap_content" 61 android:layout_height="wrap_content" 62 android:text="@string/debug_enable_strict_mode_label" 63 /> 64</LinearLayout> 65