2018-11-28 19:15:30 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2017-11-22 17:23:28 +03:00
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
2021-04-01 17:33:40 +03:00
|
|
|
~ @author Marcel Hibbe
|
2021-05-04 15:32:14 +03:00
|
|
|
~ @author Andy Scherzinger
|
2021-04-01 17:33:40 +03:00
|
|
|
~ Copyright (C) 2021 Marcel Hibbe <dev@mhibbe.de>
|
2021-05-04 15:32:14 +03:00
|
|
|
~ Copyright (C) 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
2017-11-22 17:23:28 +03:00
|
|
|
~ Copyright (C) 2017 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/>.
|
|
|
|
-->
|
|
|
|
|
2017-12-07 18:05:26 +03:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-04-24 09:32:19 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-07-02 13:03:47 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:id="@+id/relative_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-04-01 17:33:40 +03:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center">
|
2017-12-07 18:05:26 +03:00
|
|
|
|
2019-08-30 13:12:40 +03:00
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
android:id="@+id/avatarImageView"
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
app:roundAsCircle="true" />
|
|
|
|
|
|
|
|
<org.webrtc.SurfaceViewRenderer
|
|
|
|
android:id="@+id/surface_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
2021-04-01 17:33:40 +03:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/peer_nick_text_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:layout_marginStart="10dp"
|
2021-07-02 13:03:47 +03:00
|
|
|
android:textColor="@android:color/white"
|
|
|
|
tools:text="Bill Murray"/>
|
2021-04-01 17:33:40 +03:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/remote_audio_off"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:layout_marginStart="10dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_toEndOf="@id/peer_nick_text_view"
|
|
|
|
android:src="@drawable/ic_mic_off_white_24px"
|
|
|
|
android:contentDescription="@string/nc_remote_audio_off"
|
2021-07-02 13:03:47 +03:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible"/>
|
2021-04-01 17:33:40 +03:00
|
|
|
|
2018-08-02 18:23:00 +03:00
|
|
|
</RelativeLayout>
|