81 lines
3.2 KiB
XML
81 lines
3.2 KiB
XML
<?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.
|
|
-->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/account_header_container"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:minHeight="@dimen/editor_min_line_item_height"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="@dimen/editor_name_top_margin"
|
|
>
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/account_type_icon"
|
|
style="@style/EditSelectorIconStyle"/>
|
|
|
|
<LinearLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginTop="@dimen/editor_account_header_top_margin"
|
|
android:layout_marginStart="@dimen/editor_account_left_margin"
|
|
android:layout_gravity="center_vertical"
|
|
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"
|
|
android:textAlignment="viewStart"
|
|
/>
|
|
|
|
<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"
|
|
android:textAlignment="viewStart"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/account_expander_icon"
|
|
android:src="@drawable/quantum_ic_expand_more_vd_theme_24"
|
|
android:tint="@color/quantum_black_secondary_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:layout_alignParentEnd="true"
|
|
android:contentDescription="@string/show_more_content_description"
|
|
android:paddingStart="@dimen/editor_round_button_padding_left"
|
|
android:paddingEnd="@dimen/editor_round_button_padding_right"
|
|
android:paddingTop="@dimen/editor_round_button_padding_top"
|
|
android:paddingBottom="@dimen/editor_round_button_padding_bottom"
|
|
android:visibility="gone"/>
|
|
</LinearLayout> |