Home | History | Annotate | Download | only in layout
      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="vertical"
     24             android:layout_width="match_parent"
     25             android:layout_height="wrap_content">
     26 
     27         <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     28                 android:orientation="horizontal"
     29                 android:layout_width="match_parent"
     30                 android:layout_height="wrap_content">
     31 
     32             <TextView android:id="@+id/accounts_tester_account_types_spinner_label"
     33                       android:layout_width="wrap_content"
     34                       android:layout_height="wrap_content"
     35                       android:text="@string/accounts_tester_select_account_type"/>
     36 
     37             <Spinner android:id="@+id/accounts_tester_account_types_spinner"
     38                      android:layout_width="wrap_content"
     39                      android:layout_height="wrap_content"/>
     40         </LinearLayout>
     41 
     42         <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     43                 android:orientation="vertical"
     44                 android:layout_width="match_parent"
     45                 android:layout_height="wrap_content">
     46 
     47             <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     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 
     63                 <Button android:id="@+id/accounts_tester_add_account"
     64                         android:layout_width="wrap_content"
     65                         android:layout_height="wrap_content"
     66                         android:text="@string/accounts_tester_add_account"/>
     67 
     68                 <Button android:id="@+id/accounts_tester_edit_properties"
     69                         android:layout_width="wrap_content"
     70                         android:layout_height="wrap_content"
     71                         android:text="@string/accounts_tester_edit_properties"/>
     72 
     73                 <Button android:id="@+id/accounts_tester_get_auth_token_by_type_and_feature"
     74                         android:layout_width="wrap_content"
     75                         android:layout_height="wrap_content"
     76                         android:text="@string/accounts_tester_get_auth_token_by_type_and_feature"/>
     77 
     78             </LinearLayout>
     79 
     80             <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     81                     android:orientation="horizontal"
     82                     android:layout_width="match_parent"
     83                     android:layout_height="wrap_content">
     84 
     85                 <TextView android:id="@+id/accounts_tester_desiredFeatures"
     86                           android:layout_width="wrap_content"
     87                           android:layout_height="wrap_content"
     88                           android:text="@string/accounts_tester_desired_features_label"/>
     89 
     90                 <EditText android:id="@+id/accounts_tester_desired_features"
     91                           android:layout_width="wrap_content"
     92                           android:layout_height="wrap_content"
     93                           android:minEms="15"/>
     94             </LinearLayout>
     95 
     96             <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     97                     android:orientation="horizontal"
     98                     android:layout_width="match_parent"
     99                     android:layout_height="wrap_content">
    100 
    101                 <TextView android:id="@+id/accounts_tester_desiredFeatures"
    102                           android:layout_width="wrap_content"
    103                           android:layout_height="wrap_content"
    104                           android:text="@string/accounts_tester_desired_authtokentype_label"/>
    105 
    106                 <EditText android:id="@+id/accounts_tester_desired_authtokentype"
    107                           android:layout_width="wrap_content"
    108                           android:layout_height="wrap_content"
    109                           android:minEms="15"/>
    110             </LinearLayout>
    111         </LinearLayout>
    112     </LinearLayout>
    113 
    114     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    115             android:orientation="horizontal"
    116             android:layout_width="match_parent"
    117             android:layout_height="wrap_content">
    118 
    119         <ListView android:id="@+id/accounts_tester_accounts_list"
    120                   android:layout_width="match_parent" android:layout_height="match_parent"/>
    121 
    122     </LinearLayout>
    123 
    124 </LinearLayout>
    125