mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
77 lines
No EOL
2.6 KiB
XML
77 lines
No EOL
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:background="@drawable/list_selector">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:id="@+id/delete"
|
|
android:paddingRight="5dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:visibility="invisible"
|
|
android:src="@drawable/list_delete" />
|
|
|
|
<TextView
|
|
android:id="@+id/unreadMessages"
|
|
android:layout_width="25dp"
|
|
android:layout_height="25dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_toLeftOf="@id/delete"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/missed_calls_bg"
|
|
android:adjustViewBounds="true"
|
|
android:gravity="center"
|
|
android:textSize="18dp"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/draft"
|
|
android:visibility="gone"
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="@color/text_selected"
|
|
android:layout_toLeftOf="@id/unreadMessages"
|
|
android:text="@string/draft"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toLeftOf="@id/draft"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/sipUri"
|
|
android:lines="1"
|
|
android:ellipsize="none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textColor="@android:color/black"
|
|
android:layout_marginLeft="10dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/lastMessage"
|
|
android:lines="1"
|
|
android:ellipsize="end"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="@android:color/black"
|
|
android:layout_marginLeft="5dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |