<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="34dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:background="@color/recent_account_bg">
|
|
<ImageView
|
android:id="@+id/mr_dot"
|
android:layout_width="28dp"
|
android:layout_height="28dp"
|
android:scaleType="fitCenter"
|
android:src="@drawable/mr_dot" />
|
|
<TextView
|
android:id="@+id/recent_login_account"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="10dp"
|
android:textSize="16sp"
|
android:textColor="@color/recent_account_text_color" />
|
|
</LinearLayout>
|