mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
85 lines
No EOL
2.3 KiB
XML
85 lines
No EOL
2.3 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_outgoing"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal" >
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingLeft="10dp"/>
|
|
|
|
<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/font3"
|
|
android:singleLine="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
style="@style/font11"
|
|
android:autoLink="web"
|
|
android:linksClickable="true"
|
|
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" />
|
|
|
|
<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>
|
|
|
|
<ImageView
|
|
android:id="@+id/status"
|
|
android:contentDescription="@string/content_description_message_status"
|
|
android:visibility="invisible"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:layout_gravity="top|right"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:adjustViewBounds="true" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/inprogress"
|
|
android:visibility="gone"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp"
|
|
android:layout_gravity="top|right"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/download"
|
|
android:text="@string/download_image"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout> |