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