mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-20 13:08:07 +00:00
37 lines
No EOL
2 KiB
XML
37 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:id="@+id/conf_add_all_to_conference_button"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_merge_all"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_choice_merge_all_to_conference" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/conf_enter_button"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_resume"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_admin_choice_enter" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/conf_leave_button"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_pause"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_admin_choice_leave" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/conf_terminate_button"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_terminate"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_admin_choice_terminate" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
</LinearLayout> |