mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
30 lines
857 B
XML
30 lines
857 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/colorG"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="35dp"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/account_address"
|
|
style="@style/font13"
|
|
android:paddingLeft="10dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/account_status"
|
|
android:src="@drawable/status_available"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:padding="5dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentRight="true"/>
|
|
|
|
<ImageView
|
|
android:background="@color/colorH"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"/>
|
|
</RelativeLayout>
|