mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 12:38:07 +00:00
48 lines
2.9 KiB
XML
48 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:minHeight="60sp"
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent" >
|
|
|
|
<ImageView android:id="@+id/picture" android:layout_width="wrap_content"
|
|
android:src="@drawable/unknown_person" android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true" android:layout_centerVertical="true"
|
|
android:paddingRight="3sp"/>
|
|
|
|
<LinearLayout android:id="@+id/callee_buttons" android:layout_alignParentRight="true"
|
|
android:layout_width="wrap_content" android:layout_height="fill_parent"
|
|
android:layout_centerVertical="true">
|
|
<ImageButton android:id="@+id/addVideo" android:src="@drawable/conf_video"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/merge_to_conference" android:src="@drawable/conf_merge"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/remove_from_conference" android:src="@drawable/conf_remove"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/unhook_call" android:src="@drawable/conf_unhook"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/terminate_call" android:src="@drawable/conf_terminate"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/pause" android:src="@drawable/conf_pause"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content"/>
|
|
<ImageButton android:id="@+id/resume" android:src="@drawable/conf_resume"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/callee_statuses" android:layout_toLeftOf="@id/callee_buttons"
|
|
android:layout_width="wrap_content" android:layout_height="fill_parent"
|
|
android:layout_centerVertical="true">
|
|
<TextView android:id="@+id/status_label" style="@style/callee_status" />
|
|
<ImageView android:id="@+id/callee_status_paused" style="@style/callee_status" android:src="@drawable/conf_status_paused" />
|
|
<ImageView android:id="@+id/callee_status_inconf" style="@style/callee_status" android:src="@drawable/conf_status_inconf"/>
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout android:id="@+id/callee_block" android:orientation="vertical"
|
|
android:layout_toRightOf="@id/picture" android:layout_toLeftOf="@id/callee_statuses"
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent"
|
|
android:layout_centerVertical="true">
|
|
<TextView android:id="@+id/name" style="@style/callee_name" />
|
|
<TextView android:id="@+id/address" style="@style/callee_address" />
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|