Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <!-- Copyright (C) 2013 The Android Open Source Project
      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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     18     style="@style/RootLayoutPadding"
     19     android:layout_width="fill_parent"
     20     android:layout_height="fill_parent"
     21     android:orientation="vertical">
     22 
     23     <ScrollView
     24         android:layout_width="match_parent"
     25         android:layout_height="match_parent"
     26         android:layout_alignParentTop="true">
     27 
     28         <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     29             android:layout_width="fill_parent"
     30             android:layout_height="wrap_content"
     31             android:orientation="vertical">
     32 
     33             <TextView
     34                 android:id="@+id/check_cert_desc"
     35                 android:layout_width="wrap_content"
     36                 android:layout_height="wrap_content"
     37                 android:text="@string/caboot_check_cert_installed" />
     38 
     39             <Button
     40                 android:id="@+id/check_creds"
     41                 android:layout_width="wrap_content"
     42                 android:layout_height="wrap_content"
     43                 android:text="@string/caboot_check_creds" />
     44 
     45             <TextView
     46                 android:id="@+id/need_to_install_cert"
     47                 android:layout_width="wrap_content"
     48                 android:layout_height="wrap_content"
     49                 android:text="@string/caboot_if_not_installed" />
     50             <TextView
     51                 android:id="@+id/need_to_install_cert_instructions"
     52                 android:layout_width="wrap_content"
     53                 android:layout_height="wrap_content"
     54                 android:text="@string/cacert_install_cert" />
     55 
     56             <Button
     57                 android:id="@+id/install"
     58                 android:layout_width="wrap_content"
     59                 android:layout_height="wrap_content"
     60                 android:text="@string/caboot_install_cert" />
     61 
     62             <TextView
     63                 android:id="@+id/remove_screen_lock_description"
     64                 android:layout_width="wrap_content"
     65                 android:layout_height="wrap_content"
     66                 android:text="@string/cacert_remove_screen_lock" />
     67 
     68             <Button
     69                 android:id="@+id/remove_screen_lock"
     70                 android:layout_width="wrap_content"
     71                 android:layout_height="wrap_content"
     72                 android:text="@string/caboot_remove_screen_lock" />
     73 
     74             <TextView
     75                 android:id="@+id/reboot"
     76                 android:layout_width="wrap_content"
     77                 android:layout_height="wrap_content"
     78                 android:text="@string/caboot_reboot_desc" />
     79 
     80             <TextView
     81                 android:id="@+id/after_reboot"
     82                 android:layout_width="wrap_content"
     83                 android:layout_height="wrap_content"
     84                 android:text="@string/caboot_after_boot" />
     85 
     86             <include layout="@layout/pass_fail_buttons" />
     87         </LinearLayout>
     88     </ScrollView>
     89 </LinearLayout>
     90