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