mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-04 13:19:46 +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
54 lines
No EOL
1.6 KiB
XML
54 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/top_layout"
|
|
android:background="@color/colorH" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/conferenceHeader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="75dp"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:background="@color/colorF">
|
|
|
|
<TextView
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical|left"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="10dp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/text_header"
|
|
android:text="@string/conference"
|
|
android:textSize="26dp" />
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_pause"
|
|
android:id="@+id/conferenceStatus"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:scaleType="fitCenter"
|
|
android:adjustViewBounds="true"
|
|
android:src="@drawable/pause" />
|
|
|
|
<Chronometer
|
|
android:visibility="invisible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="20dp"
|
|
android:gravity="center_vertical|right"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="22dp" />
|
|
</LinearLayout>
|
|
|
|
<TableLayout
|
|
android:id="@+id/calls"
|
|
android:layout_below="@id/conferenceHeader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</RelativeLayout> |