mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 12:38:07 +00:00
88 lines
No EOL
2.5 KiB
XML
88 lines
No EOL
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bubble"
|
|
android:background="@drawable/resizable_chat_bubble_incoming"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:orientation="horizontal" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/avatar_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dp">
|
|
|
|
<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>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/contact_header"
|
|
style="@style/font9"
|
|
android:singleLine="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
style="@style/font11"
|
|
android:linksClickable="true"
|
|
android:autoLink="web"
|
|
android:layout_gravity="left"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:visibility="gone"
|
|
android:layout_width="150dp"
|
|
android:layout_height="150dp"
|
|
android:scaleType="center"
|
|
android:maxWidth="250dp"
|
|
android:maxHeight="250dp" />
|
|
|
|
<Button
|
|
android:id="@+id/download"
|
|
android:text="@string/download_image"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/spinner"
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
android:visibility="gone"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="5dp"/>
|
|
|
|
</LinearLayout> |