mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 20:08:08 +00:00
26 lines
770 B
XML
26 lines
770 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/layout"
|
|
android:background="@drawable/list_selector"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:padding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/contact_name"
|
|
style="@style/font6"
|
|
android:lines="1"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:id="@+id/contact_address"
|
|
style="@style/font2"
|
|
android:lines="1"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|