2016-11-09 17:37:40 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/inCallControls"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
tools:background="@color/textsecure_primary">
|
|
|
|
|
2017-07-12 23:18:54 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AccessibleToggleButton
|
|
|
|
android:id="@+id/speakerButton"
|
|
|
|
style="@style/WebRtcCallCompoundButton"
|
|
|
|
android:background="@drawable/webrtc_speaker_button"
|
|
|
|
tools:checked="true"
|
|
|
|
android:layout_marginRight="15dp"/>
|
2016-11-09 17:37:40 +00:00
|
|
|
|
2017-07-12 23:18:54 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AccessibleToggleButton
|
|
|
|
android:id="@+id/bluetoothButton"
|
|
|
|
style="@style/WebRtcCallCompoundButton"
|
|
|
|
android:background="@drawable/webrtc_bluetooth_button"
|
|
|
|
tools:checked="true"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:visibility="gone"/>
|
2016-11-09 17:37:40 +00:00
|
|
|
|
2017-07-12 23:18:54 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AccessibleToggleButton
|
|
|
|
android:id="@+id/muteButton"
|
|
|
|
style="@style/WebRtcCallCompoundButton"
|
|
|
|
android:background="@drawable/webrtc_mute_button"
|
|
|
|
android:contentDescription="@string/redphone_call_controls__mute"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
tools:checked="false"
|
2016-11-09 17:37:40 +00:00
|
|
|
/>
|
|
|
|
|
2017-07-12 23:18:54 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AccessibleToggleButton
|
|
|
|
android:id="@+id/video_mute_button"
|
|
|
|
style="@style/WebRtcCallCompoundButton"
|
2018-03-23 19:31:03 +00:00
|
|
|
android:layout_marginRight="15dp"
|
2017-07-12 23:18:54 +00:00
|
|
|
android:background="@drawable/webrtc_video_mute_button"/>
|
2016-11-09 17:37:40 +00:00
|
|
|
|
2018-03-23 19:31:03 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AccessibleToggleButton
|
|
|
|
android:id="@+id/camera_flip_button"
|
|
|
|
style="@style/WebRtcCallCompoundButton"
|
|
|
|
android:contentDescription="@string/redphone_call_controls__flip_camera_rear"
|
|
|
|
android:background="@drawable/webrtc_camera_flip_button"/>
|
|
|
|
|
2016-11-09 17:37:40 +00:00
|
|
|
</merge>
|