mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/default_account"
|
|
android:contentDescription="@string/content_description_default_account"
|
|
android:background="@color/colorF"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/main_account_avatar"
|
|
android:src="@drawable/avatar"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:layout_toRightOf="@+id/main_account_avatar"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/main_account_display_name"
|
|
style="@style/font7"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/main_account_address"
|
|
style="@style/font3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/main_account_status"
|
|
android:src="@drawable/status_available"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:padding="5dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"/>
|
|
|
|
</RelativeLayout>
|