Home | History | Annotate | Download | only in layout
      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     <TextView
     23         android:id="@+id/version"
     24         android:layout_width="match_parent"
     25         android:layout_height="wrap_content"
     26         android:text="@string/debug_version_fmt"
     27         />
     28     <CheckBox
     29         android:id="@+id/debug_logging"
     30         android:layout_width="wrap_content"
     31         android:layout_height="wrap_content"
     32         android:text="@string/debug_enable_debug_logging_label"
     33         />
     34 <!-- EXCHANGE-REMOVE-SECTION-START -->
     35     <CheckBox
     36         android:id="@+id/exchange_logging"
     37         android:layout_width="wrap_content"
     38         android:layout_height="wrap_content"
     39         android:text="@string/debug_enable_exchange_logging_label"
     40     />
     41     <CheckBox
     42         android:id="@+id/exchange_file_logging"
     43         android:layout_width="wrap_content"
     44         android:layout_height="wrap_content"
     45         android:text="@string/debug_enable_exchange_file_logging_label"
     46     />
     47 <!-- EXCHANGE-REMOVE-SECTION-END -->
     48     <Button
     49         android:id="@+id/clear_webview_cache"
     50         android:layout_width="wrap_content"
     51         android:layout_height="wrap_content"
     52         android:text="@string/debug_clear_webview_cache"
     53     />
     54     <CheckBox
     55         android:id="@+id/debug_disable_graphics_acceleration"
     56         android:layout_width="wrap_content"
     57         android:layout_height="wrap_content"
     58         android:text="@string/debug_disable_graphics_acceleration_label"
     59     />
     60     <CheckBox
     61         android:id="@+id/debug_force_one_minute_refresh"
     62         android:layout_width="wrap_content"
     63         android:layout_height="wrap_content"
     64         android:text="@string/debug_force_one_minute_refresh_label"
     65     />
     66     <CheckBox
     67         android:id="@+id/debug_enable_strict_mode"
     68         android:layout_width="wrap_content"
     69         android:layout_height="wrap_content"
     70         android:text="@string/debug_enable_strict_mode_label"
     71     />
     72 </LinearLayout>
     73