2019-06-09 21:27:55 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
2021-05-04 15:32:14 +03:00
|
|
|
~ @author Andy Scherzinger
|
|
|
|
~ Copyright (C) 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
2019-06-09 21:27:55 +03:00
|
|
|
~ Copyright (C) 2017-2019 Mario Danic <mario@lovelyhq.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-10-28 01:10:06 +03:00
|
|
|
android:id="@+id/callStateRelativeLayout"
|
2019-06-09 21:27:55 +03:00
|
|
|
android:layout_width="match_parent"
|
2021-02-04 10:29:09 +03:00
|
|
|
android:layout_height="wrap_content">
|
2019-06-09 21:27:55 +03:00
|
|
|
|
2019-08-30 13:12:40 +03:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/errorImageView"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
2021-02-04 10:29:09 +03:00
|
|
|
android:layout_above="@id/callStateTextView"
|
2019-08-30 13:12:40 +03:00
|
|
|
android:layout_centerHorizontal="true"
|
2021-05-04 15:32:14 +03:00
|
|
|
android:contentDescription="@null"
|
2019-08-30 13:12:40 +03:00
|
|
|
android:src="@drawable/ic_signal_wifi_off_white_24dp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2019-06-09 21:27:55 +03:00
|
|
|
<ProgressBar
|
2021-02-04 10:29:09 +03:00
|
|
|
android:id="@+id/callStateProgressBar"
|
2019-06-09 21:27:55 +03:00
|
|
|
android:layout_width="@dimen/item_height"
|
|
|
|
android:layout_height="@dimen/item_height"
|
2021-02-04 10:29:09 +03:00
|
|
|
android:layout_above="@id/callStateTextView"
|
2019-06-09 21:27:55 +03:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
|
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:indeterminateTint="@color/colorPrimary"
|
|
|
|
android:indeterminateTintMode="src_in" />
|
|
|
|
|
|
|
|
<TextView
|
2021-02-04 10:29:09 +03:00
|
|
|
android:id="@+id/callStateTextView"
|
2019-06-09 21:27:55 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/nc_connecting_call"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textColor="@color/white" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|