mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 20:48:08 +00:00
67 lines
No EOL
3.4 KiB
XML
67 lines
No EOL
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:id="@+id/transfer_new"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_transfer"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_choice_transfer_new" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/transfer_existing"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_transfer"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_choice_transfer_existing" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/remove_from_conference"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_remove"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_choice_remove_from_conference" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout android:id="@+id/merge_to_conference"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_merge"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/conf_choice_merge_to_conference" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/pause"
|
|
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_choice_pause" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/resume"
|
|
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_choice_resume" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/terminate_call"
|
|
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_choice_terminate" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView> |