2020-03-06 05:10:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2019-05-24 21:18:27 +00:00
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2019-08-02 02:14:40 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-12-06 00:34:07 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-05-24 21:18:27 +00:00
|
|
|
android:id="@+id/account_preference_background"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-02 02:14:40 +00:00
|
|
|
android:foreground="?android:attr/selectableItemBackground"
|
2019-05-24 21:18:27 +00:00
|
|
|
android:gravity="center_vertical"
|
2020-03-06 05:10:51 +00:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2019-08-27 17:26:32 +00:00
|
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">
|
2019-05-24 21:18:27 +00:00
|
|
|
|
2020-03-06 05:10:51 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@android:id/icon"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:scaleType="fitCenter" />
|
2019-05-24 21:18:27 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginEnd="6dp"
|
2019-08-02 02:14:40 +00:00
|
|
|
android:layout_weight="1"
|
2019-05-24 21:18:27 +00:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="16dp"
|
2020-03-06 05:10:51 +00:00
|
|
|
android:paddingEnd="0dp"
|
2019-08-02 02:14:40 +00:00
|
|
|
android:paddingBottom="16dp">
|
2019-05-24 21:18:27 +00:00
|
|
|
|
2019-08-02 02:14:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/displayName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:textColor="?primaryText"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:visibility="gone" />
|
2019-05-24 21:18:27 +00:00
|
|
|
|
2019-08-02 02:14:40 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/email"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/displayName"
|
|
|
|
android:layout_alignStart="@id/displayName"
|
|
|
|
android:maxLines="4"
|
|
|
|
android:text="@string/preferences_account_default_name"
|
2019-12-06 00:34:07 +00:00
|
|
|
android:textColor="?primaryText"
|
|
|
|
app:fontFamily="@font/metropolis_bold" />
|
2019-05-24 21:18:27 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2019-08-02 02:14:40 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@android:id/widget_frame"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical" />
|
2019-05-24 21:18:27 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|