mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-24 23:28:10 +00:00
- single click for resuming/pausing call; - long click for advanced call/conference interaction; - terminate call action according to situation; - conference details activity; - cleanings.
61 lines
No EOL
3.4 KiB
XML
61 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/encrypted" android:visibility="gone"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:id="@+id/set_auth_token_verified" android:src="@drawable/conf_secured" android:visibility="gone"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<ImageButton android:id="@+id/set_auth_token_not_verified" android:src="@drawable/conf_maybe_secured" android:visibility="gone"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:id="@+id/authentication_token" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/unencrypted" android:visibility="gone"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageView android:src="@drawable/conf_not_secured" android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
<TextView android:text="@string/not_encrypted" android:layout_gravity="center_vertical"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/transfer_new"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_transfer" android:clickable="false"
|
|
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:clickable="false"
|
|
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/merge_to_conference"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_merge" android:clickable="false"
|
|
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/terminate_call"
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
|
<ImageButton android:src="@drawable/conf_terminate" android:clickable="false"
|
|
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> |