linphone-android/app/src/main/res/layout/call_overlay.xml
2021-04-27 13:59:19 +02:00

27 lines
No EOL
895 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<import type="android.view.View" />
<variable
name="visibility"
type="Boolean" />
</data>
<RelativeLayout
android:layout_width="@dimen/call_overlay_size"
android:layout_height="@dimen/call_overlay_size"
android:visibility="@{visibility ? View.VISIBLE : View.GONE}">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background_round_primary_color"
android:contentDescription="@string/content_description_go_back_to_call"
android:adjustViewBounds="true"
android:padding="10dp"
android:src="@drawable/call_back" />
</RelativeLayout>
</layout>