<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/remote_pause"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:alpha="0.9"
|
android:background="@color/dark_grey_color"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:src="@drawable/waiting_time" />
|
|
<TextView
|
style="@style/call_status_font"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:text="@string/call_paused_by_remote" />
|
|
</LinearLayout>
|