mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
Conflicts: AndroidManifest.xml res/layout/chat_bubble_alt_incoming.xml res/layout/chat_bubble_alt_outgoing.xml res/layout/chat_bubble_incoming.xml res/layout/chat_bubble_outgoing.xml res/values/strings.xml src/org/linphone/ContactsManager.java src/org/linphone/compatibility/ApiFivePlus.java src/org/linphone/ui/BubbleChat.java
90 lines
No EOL
2.9 KiB
XML
90 lines
No EOL
2.9 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:background="@drawable/list_selector"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/separator"
|
|
android:paddingLeft="10dp"
|
|
android:textSize="30sp"
|
|
android:gravity="center"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/colorH"
|
|
android:textColor="@color/colorA"
|
|
android:layout_marginBottom="10dp"
|
|
android:textStyle="bold" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/mask"
|
|
android:src="@drawable/avatar_mask"
|
|
android:contentDescription="@string/content_description_contact_picture"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginLeft="5dp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:lines="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/avatar_layout"
|
|
android:layout_centerVertical="true"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textColor="@color/text_contrast"
|
|
android:layout_marginLeft="10dp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/friendStatus"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:adjustViewBounds="true"
|
|
android:layout_marginRight="20dp"
|
|
android:scaleType="centerInside"
|
|
android:src="@drawable/led_connected" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/delete"
|
|
android:button="@drawable/checkbox"
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:visibility="gone"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |