<?xml version="1.0" encoding="utf-8"?><!--
  ~ Nextcloud Talk application
  ~
  ~ @author Mario Danic
  ~ Copyright (C) 2017-2018 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"
    xmlns:apc="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bg_controller_conv_info"
    android:orientation="vertical">

    <ProgressBar
        android:id="@+id/progressBar"
        android:layout_width="@dimen/item_height"
        android:layout_height="@dimen/item_height"
        android:layout_centerInParent="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" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <com.yarolegovich.mp.MaterialPreferenceCategory
                android:id="@+id/conversation_info_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:animateLayoutChanges="true"
                android:visibility="gone">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content">

                    <androidx.emoji.widget.EmojiTextView
                        android:id="@+id/display_name_text"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@id/avatar_image"
                        android:layout_centerHorizontal="true"
                        android:layout_marginTop="@dimen/margin_between_elements"
                        android:textColor="@color/fg_default" />

                    <com.facebook.drawee.view.SimpleDraweeView
                        android:id="@+id/avatar_image"
                        android:layout_width="@dimen/avatar_size_big"
                        android:layout_height="@dimen/avatar_size_big"
                        android:layout_centerHorizontal="true"
                        apc:roundAsCircle="true" />

                </RelativeLayout>
            </com.yarolegovich.mp.MaterialPreferenceCategory>

            <com.yarolegovich.mp.MaterialPreferenceCategory
                android:id="@+id/otherRoomOptions"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/conversation_info_name"
                android:visibility="gone">

                <com.yarolegovich.mp.MaterialStandardPreference
                    android:id="@+id/favoriteConversationAction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    apc:mp_icon="@drawable/ic_star_black_24dp"
                    apc:mp_icon_tint="@color/grey_600"
                    apc:mp_title="@string/nc_add_to_favorites">

                </com.yarolegovich.mp.MaterialStandardPreference>

            </com.yarolegovich.mp.MaterialPreferenceCategory>

            <com.yarolegovich.mp.MaterialPreferenceCategory
                android:id="@+id/participants_list_category"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/webinar_settings"
                android:visibility="gone"
                apc:mpc_title="@string/nc_participants"
                apc:mpc_title_color="@color/colorPrimary"
                tools:ignore="UnknownIdInLayout">

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/recycler_view"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    tools:listitem="@layout/rv_item_contact" />

            </com.yarolegovich.mp.MaterialPreferenceCategory>

            <com.yarolegovich.mp.MaterialPreferenceCategory
                android:id="@+id/ownOptions"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/participants_list_category"
                android:visibility="gone">

                <com.yarolegovich.mp.MaterialStandardPreference
                    android:id="@+id/leaveConversationAction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    apc:mp_icon="@drawable/ic_exit_to_app_black_24dp"
                    apc:mp_icon_tint="@color/grey_600"
                    apc:mp_title="@string/nc_leave" />

                <com.yarolegovich.mp.MaterialStandardPreference
                    android:id="@+id/deleteConversationAction"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    apc:mp_icon="@drawable/ic_delete_black_24dp"
                    apc:mp_icon_tint="@color/grey_600"
                    apc:mp_title="@string/nc_delete_call" />

            </com.yarolegovich.mp.MaterialPreferenceCategory>

            <include
                layout="@layout/notification_settings_item"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/otherRoomOptions"
                android:visibility="gone" />

            <include
                layout="@layout/webinar_info_item"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/notification_settings"
                android:visibility="gone" />
        </RelativeLayout>
    </ScrollView>
</RelativeLayout>