mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-24 15:18:08 +00:00
Conflicts: res/drawable-xhdpi/checkbox_checked.png res/drawable-xhdpi/checkbox_unchecked.png res/drawable-xhdpi/resizable_textfield.9.png res/drawable/avatar_mask_chat.xml res/layout/about.xml res/layout/call.xml res/layout/call_inactive_row.xml res/layout/chat.xml res/layout/chat_bubble_incoming.xml res/layout/chat_bubble_outgoing.xml res/layout/chatlist.xml res/layout/contact.xml res/layout/contacts_list.xml res/layout/dialer.xml res/layout/history.xml res/layout/history_detail.xml res/layout/main.xml res/layout/search_contact_cell.xml res/layout/side_menu_account_cell.xml res/layout/side_menu_item_cell.xml res/layout/side_menu_main_account.xml res/values/non_localizable_custom.xml res/values/strings.xml res/values/styles.xml src/org/linphone/ChatFragment.java src/org/linphone/ContactsListFragment.java src/org/linphone/DialerFragment.java src/org/linphone/HistoryDetailFragment.java src/org/linphone/LinphoneActivity.java src/org/linphone/LinphoneService.java
107 lines
3 KiB
XML
107 lines
3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bubble"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<CheckBox
|
|
android:id="@+id/delete"
|
|
android:button="@drawable/checkbox"
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_alignParentRight="true"
|
|
android:visibility="gone"/>
|
|
|
|
<LinearLayout
|
|
android:background="@drawable/resizable_chat_bubble_outgoing"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@id/delete"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/contact_header"
|
|
style="@style/font12"
|
|
android:singleLine="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
style="@style/font14"
|
|
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="centerInside"
|
|
android:layout_centerInParent="true" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/file_transfer_layout"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
android:paddingRight="5dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_width="150dp"
|
|
android:layout_height="5dp"/>
|
|
|
|
<Button
|
|
android:id="@+id/cancel_upload"
|
|
android:text="@string/cancel"
|
|
android:background="@drawable/resizable_confirm_delete_button"
|
|
style="@style/font15"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/progress_bar"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/status"
|
|
android:contentDescription="@string/content_description_message_status"
|
|
android:visibility="invisible"
|
|
android:padding="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:layout_gravity="top|right"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|