mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
48 lines
No EOL
1.6 KiB
XML
48 lines
No EOL
1.6 KiB
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="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingBottom="10dp"
|
|
android:background="@drawable/list_selector"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/separator"
|
|
android:paddingLeft="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/numpad_background_top"
|
|
android:textColor="@android:color/white"
|
|
android:layout_marginBottom="10dp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:id="@+id/icon"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_weight="2.3"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/unknown_small" />
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:lines="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.3"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textColor="@android:color/black"
|
|
android:layout_marginLeft="10dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |