mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
125 lines
No EOL
3.9 KiB
XML
125 lines
No EOL
3.9 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="80dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="5dp"
|
|
android:background="@drawable/list_selector">
|
|
|
|
<CheckBox
|
|
android:id="@+id/delete_chatroom"
|
|
android:button="@drawable/checkbox"
|
|
android:contentDescription="@string/content_description_delete"
|
|
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:layout_alignParentTop="true"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerVertical="true"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/mask"
|
|
android:src="@drawable/avatar_mask"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:adjustViewBounds="true"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/avatar_layout"
|
|
android:layout_marginTop="5dp"
|
|
android:maxLines="1"
|
|
style="@style/font2"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_toLeftOf="@id/delete_chatroom"
|
|
android:paddingLeft="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/sipUri"
|
|
android:lines="1"
|
|
android:ellipsize="end"
|
|
android:scrollHorizontally="true"
|
|
android:maxLines="1"
|
|
style="@style/font6"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="30dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/unreadMessages"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:contentDescription="@string/content_description_unread_chat_message"
|
|
android:background="@drawable/chat_list_indicator"
|
|
style="@style/font18"
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:layout_above="@+id/lastMessageLayout"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"/>
|
|
|
|
<LinearLayout
|
|
android:id="@id/lastMessageLayout"
|
|
android:layout_below="@id/sipUri"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/lastMessageSender"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/font11"/>
|
|
|
|
<TextView
|
|
android:id="@+id/lastMessage"
|
|
android:maxLines="2"
|
|
android:ellipsize="end"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="30dp"
|
|
style="@style/font11"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |