mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-21 21:58:09 +00:00
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:ui="http://schemas.android.com/apk/res/org.linphone"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<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:fadeScrollbars="false"
|
|
/>
|
|
|
|
|
|
<View android:layout_weight="1" android:layout_width="0px" android:layout_height="0px" android:visibility="invisible"/>
|
|
|
|
|
|
<LinearLayout android:id="@+id/conf_speaker_mic_row"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<org.linphone.ui.ToggleImageButton android:id="@+id/toggleMuteMic"
|
|
style="@style/incall_control"
|
|
ui:checked="@drawable/incall_micro_inverse"
|
|
ui:unchecked="@drawable/incall_micro"
|
|
ui:bgdrawables="true" />
|
|
|
|
<org.linphone.ui.ToggleImageButton android:id="@+id/toggleSpeaker"
|
|
style="@style/incall_control"
|
|
ui:checked="@drawable/incall_speaker_inverse"
|
|
ui:unchecked="@drawable/incall_speaker"
|
|
ui:bgdrawables="true" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|