| <?xml version="1.0" encoding="utf-8"?> |
| <!-- |
| Copyright (C) 2015 The Android Open Source Project |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <!-- Copy of editor_account_header_expandable, but w/o the expand account button. --> |
| <LinearLayout |
| xmlns:android="http://schemas.android.com/apk/res/android" |
| android:id="@+id/account_container" |
| android:layout_height="wrap_content" |
| android:layout_width="match_parent" |
| android:orientation="horizontal" |
| android:background="?android:attr/selectableItemBackground" |
| android:paddingTop="8dip" |
| > |
| |
| <ImageView |
| android:id="@+id/account_type_icon" |
| android:layout_width="@dimen/detail_network_icon_size" |
| android:layout_height="@dimen/detail_network_icon_size" |
| android:layout_margin="16dip" |
| android:layout_gravity="center_vertical" /> |
| |
| <LinearLayout |
| android:layout_height="wrap_content" |
| android:layout_width="0dp" |
| android:layout_weight="1" |
| android:paddingBottom="24dp" |
| android:paddingTop="24dp" |
| android:orientation="vertical" |
| > |
| |
| <TextView |
| android:id="@+id/account_type" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:textSize="16sp" |
| android:singleLine="true" |
| android:textColor="@color/primary_text_color" |
| android:ellipsize="end" |
| /> |
| |
| <TextView |
| android:id="@+id/account_name" |
| android:layout_width="match_parent" |
| android:layout_height="wrap_content" |
| android:textSize="14sp" |
| android:singleLine="true" |
| android:textColor="@color/secondary_text_color" |
| android:ellipsize="end" |
| /> |
| |
| </LinearLayout> |
| |
| </LinearLayout> |