1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2007 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 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:orientation="vertical" 20 android:layout_width="fill_parent" 21 android:layout_height="fill_parent"> 22 23 <LinearLayout 24 android:orientation="vertical" 25 android:layout_width="fill_parent" 26 android:layout_height="wrap_content"> 27 28 <ListView android:id="@+id/accounts_tester_authenticators_list" 29 android:layout_width="fill_parent" android:layout_height="fill_parent"/> 30 31 <LinearLayout 32 android:orientation="horizontal" 33 android:layout_width="fill_parent" 34 android:layout_height="wrap_content"> 35 36 <TextView android:id="@+id/accounts_tester_account_types_spinner_label" 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:text="@string/accounts_tester_select_account_type"/> 40 41 <Spinner android:id="@+id/accounts_tester_account_types_spinner" 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content"/> 44 </LinearLayout> 45 46 <LinearLayout 47 android:orientation="vertical" 48 android:layout_width="fill_parent" 49 android:layout_height="wrap_content"> 50 <LinearLayout 51 android:orientation="horizontal" 52 android:layout_width="fill_parent" 53 android:layout_height="wrap_content"> 54 <Button 55 android:id="@+id/accounts_tester_get_accounts_by_type" 56 android:layout_width="wrap_content" 57 android:layout_height="wrap_content" 58 android:text="@string/accounts_tester_get_accounts_by_type"/> 59 60 <Button 61 android:id="@+id/accounts_tester_get_all_accounts" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:text="@string/accounts_tester_get_all_accounts"/> 65 <Button android:id="@+id/accounts_tester_add_account" 66 android:layout_width="wrap_content" 67 android:layout_height="wrap_content" 68 android:text="@string/accounts_tester_add_account"/> 69 70 <Button android:id="@+id/accounts_tester_edit_properties" 71 android:layout_width="wrap_content" 72 android:layout_height="wrap_content" 73 android:text="@string/accounts_tester_edit_properties"/> 74 </LinearLayout> 75 76 <LinearLayout 77 android:orientation="horizontal" 78 android:layout_width="fill_parent" 79 android:layout_height="wrap_content"> 80 <TextView android:id="@+id/accounts_tester_desiredFeatures" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="@string/accounts_tester_desired_features_label"/> 84 85 <EditText android:id="@+id/accounts_tester_desired_features" 86 android:layout_width="wrap_content" 87 android:layout_height="wrap_content" 88 android:minEms="15"/> 89 </LinearLayout> 90 <LinearLayout 91 android:orientation="horizontal" 92 android:layout_width="fill_parent" 93 android:layout_height="wrap_content"> 94 <TextView android:id="@+id/accounts_tester_desiredFeatures" 95 android:layout_width="wrap_content" 96 android:layout_height="wrap_content" 97 android:text="@string/accounts_tester_desired_authtokentype_label"/> 98 99 <EditText android:id="@+id/accounts_tester_desired_authtokentype" 100 android:layout_width="wrap_content" 101 android:layout_height="wrap_content" 102 android:minEms="15"/> 103 </LinearLayout> 104 </LinearLayout> 105 </LinearLayout> 106 107 <LinearLayout 108 android:orientation="horizontal" 109 android:layout_width="fill_parent" 110 android:layout_height="wrap_content"> 111 112 <ListView android:id="@+id/accounts_tester_accounts_list" 113 android:layout_width="fill_parent" android:layout_height="fill_parent"/> 114 115 </LinearLayout> 116 117</LinearLayout> 118