mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
51 lines
1.4 KiB
XML
51 lines
1.4 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:background="@color/colorF"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="80dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
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/icon"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/display_name"
|
|
style="@style/font7"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:editable="false"/>
|
|
|
|
<TextView
|
|
android:id="@+id/address"
|
|
style="@style/font3"
|
|
android:editable="false"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/status_led"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:src="@drawable/status_available"
|
|
android:padding="5dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignBottom="@id/layout"/>
|
|
|
|
</RelativeLayout>
|