mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-21 05:28:08 +00:00
87 lines
3.9 KiB
XML
87 lines
3.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp">
|
|
|
|
|
|
<LinearLayout android:id="@+id/conf_header" android:layout_alignParentTop="true"
|
|
android:orientation="vertical" android:layout_marginBottom="10dip"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
android:layout_alignWithParentIfMissing="true"
|
|
android:minHeight="60sp"
|
|
android:background="@drawable/conf_callee_selector_normal" >
|
|
<TextView android:text="@string/conf_conference" style="@style/callee_address"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
android:gravity="center"/>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/conf_speaker_mic_row"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ToggleButton android:id="@+id/toggleMuteMic" style="@style/conf_toggle_button"
|
|
android:textOn="@string/mutemic_button_txt" android:textOff="@string/mutemic_button_txt" />
|
|
<ToggleButton android:id="@+id/toggleSpeaker" style="@style/conf_toggle_button"
|
|
android:textOn="@string/speaker_button_txt" android:textOff="@string/speaker_button_txt" />
|
|
<ToggleButton android:id="@+id/toggleBluetooth" style="@style/conf_toggle_button"
|
|
android:textOn="@string/bluetooth_button_txt" android:textOff="@string/bluetooth_button_txt"
|
|
android:visibility="gone"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/conf_terminate_row"
|
|
android:layout_above="@id/conf_speaker_mic_row"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<Button android:text="@string/AddCallButtonText" android:id="@+id/addCall"
|
|
style="@style/conf_icon_text_button" android:drawableTop="@drawable/plus" />
|
|
|
|
<Button android:id="@+id/incallHang" style="@style/conf_icon_text_button"
|
|
android:drawableTop="@drawable/stopcall_red" android:text="@string/hangup"/>
|
|
|
|
<Button android:id="@+id/incallNumpadShow" style="@style/conf_icon_text_button"
|
|
android:text="@string/show_send_dtmfs_button" android:drawableTop="@drawable/numpad_big" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/conf_advanced_buttons"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
|
android:layout_above="@id/conf_terminate_row">
|
|
<Button android:id="@+id/conf_simple_video" style="@style/conf_icon_text_button"
|
|
android:drawableTop="@drawable/conf_video"
|
|
android:text="@string/conf_simple_video_bt_txt"/>
|
|
<Button android:id="@+id/conf_simple_merge" style="@style/conf_icon_text_button"
|
|
android:drawableTop="@drawable/conf_merge"
|
|
android:text="@string/conf_simple_merge_bt_txt"/>
|
|
<Button android:id="@+id/conf_simple_transfer" style="@style/conf_icon_text_button"
|
|
android:drawableTop="@drawable/conf_transfer"
|
|
android:text="@string/conf_simple_transfer_bt_txt" />
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView android:id="@+id/incall_picture" android:visibility="gone"
|
|
android:layout_height="wrap_content" android:layout_width="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="center" android:scaleType="fitCenter"
|
|
android:minWidth="192px" android:minHeight="192px"
|
|
android:paddingBottom="60px"
|
|
/>
|
|
|
|
<ListView android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawSelectorOnTop="true"
|
|
android:dividerHeight="10dip"
|
|
android:divider="@android:color/transparent"
|
|
android:layout_below="@id/conf_header"
|
|
android:layout_above="@id/conf_advanced_buttons"
|
|
android:layout_alignWithParentIfMissing="true"
|
|
android:fadeScrollbars="false"
|
|
/>
|
|
</RelativeLayout>
|