mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-28 09:09:20 +00:00
28 lines
889 B
XML
28 lines
889 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:gravity="center_vertical"
|
|
android:background="@color/colorG"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/Contact_name"
|
|
android:lines="1"
|
|
style="@style/font2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/icon"
|
|
android:layout_centerVertical="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/contact_address"
|
|
style="@style/font9"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:adjustViewBounds="true"
|
|
android:scaleType="centerInside" />
|
|
</LinearLayout>
|