mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
68 lines
No EOL
1.9 KiB
XML
68 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bubble"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/resizable_chat_bubble_outgoing"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingLeft="10dp"
|
|
android:src="@drawable/avatar"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/contact_header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="10dp"
|
|
style="@style/font3"/>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
android:visibility="gone"
|
|
android:linksClickable="true"
|
|
android:autoLink="web"
|
|
android:paddingBottom="10dp"
|
|
android:textColor="@android:color/black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:adjustViewBounds="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="250dp"
|
|
android:maxHeight="250dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_message_status"
|
|
android:id="@+id/status"
|
|
android:visibility="gone"
|
|
android:layout_gravity="bottom"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true" />
|
|
|
|
<Button
|
|
android:id="@+id/download"
|
|
android:text="@string/download_image"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |