mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-17 14:12:00 +03:00
136 lines
5.9 KiB
XML
136 lines
5.9 KiB
XML
<?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:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
android:layout_width="@dimen/item_height"
|
|
android:layout_height="@dimen/item_height"
|
|
android:layout_centerInParent="true"
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
|
android:layout_marginLeft="@dimen/activity_horizontal_margin"
|
|
android:layout_marginRight="@dimen/activity_horizontal_margin"
|
|
android:layout_marginStart="@dimen/activity_horizontal_margin"
|
|
android:indeterminate="true"
|
|
android:indeterminateTint="@color/colorPrimary"
|
|
android:indeterminateTintMode="src_in"
|
|
android:visibility="gone"/>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/emptyLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:id="@+id/wawingTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="👋"
|
|
android:textAlignment="center"
|
|
android:textSize="72sp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/sendHiTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/wawingTextView"
|
|
android:layout_margin="8dp"
|
|
android:textAlignment="center"
|
|
android:textSize="20sp"/>
|
|
</RelativeLayout>
|
|
|
|
<com.stfalcon.chatkit.messages.MessagesList
|
|
android:id="@+id/messagesListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@+id/messageInputView"
|
|
android:visibility="gone"
|
|
app:dateHeaderTextSize="13sp"
|
|
app:incomingBubblePaddingBottom="@dimen/message_bubble_corners_padding"
|
|
app:incomingBubblePaddingLeft="@dimen/message_bubble_corners_padding"
|
|
app:incomingBubblePaddingRight="@dimen/message_bubble_corners_padding"
|
|
app:incomingBubblePaddingTop="@dimen/message_bubble_corners_padding"
|
|
app:incomingDefaultBubbleColor="@color/white_two"
|
|
app:incomingDefaultBubblePressedColor="@color/white_two"
|
|
app:incomingDefaultBubbleSelectedColor="@color/transparent"
|
|
app:incomingTextColor="@color/nc_incoming_text_default"
|
|
app:incomingTextLinkColor="@color/nc_incoming_text_default"
|
|
app:incomingTextSize="@dimen/chat_text_size"
|
|
app:incomingTimeTextSize="12sp"
|
|
app:outcomingBubblePaddingBottom="@dimen/message_bubble_corners_padding"
|
|
app:outcomingBubblePaddingLeft="@dimen/message_bubble_corners_padding"
|
|
app:outcomingBubblePaddingRight="@dimen/message_bubble_corners_padding"
|
|
app:outcomingBubblePaddingTop="@dimen/message_bubble_corners_padding"
|
|
app:outcomingDefaultBubbleColor="@color/colorPrimary"
|
|
app:outcomingDefaultBubblePressedColor="@color/colorPrimary"
|
|
app:outcomingDefaultBubbleSelectedColor="@color/transparent"
|
|
app:outcomingTextColor="@color/nc_outcoming_text_default"
|
|
app:outcomingTextLinkColor="@color/nc_outcoming_text_default"
|
|
app:outcomingTextSize="@dimen/chat_text_size"
|
|
app:outcomingTimeTextSize="12sp"
|
|
app:outcomingImageTimeTextSize="12sp"
|
|
app:incomingImageTimeTextSize="12sp"
|
|
app:textAutoLink="all"/>
|
|
|
|
<com.webianks.library.PopupBubble
|
|
android:id="@+id/popupBubbleView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/separator"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_margin="16dp"
|
|
android:paddingEnd="8dp"
|
|
app:pb_backgroundColor="@color/colorPrimary"
|
|
app:pb_icon="@drawable/ic_baseline_arrow_downward_24px"
|
|
app:pb_text="@string/nc_new_messages"
|
|
app:pb_textColor="@color/white"/>
|
|
|
|
<View
|
|
android:id="@+id/separator"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_above="@+id/messageInputView"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:background="@color/nc_light_grey"/>
|
|
|
|
<com.stfalcon.chatkit.messages.MessageInput
|
|
android:id="@+id/messageInputView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:maxLength="1000"
|
|
app:inputButtonDefaultBgColor="@color/colorPrimary"
|
|
app:inputButtonDefaultBgPressedColor="@color/colorPrimaryDark"
|
|
app:inputButtonHeight="30dp"
|
|
app:inputButtonMargin="16dp"
|
|
app:inputButtonWidth="30dp"
|
|
app:inputHint="@string/nc_hint_enter_a_message"
|
|
app:inputTextColor="@color/black"
|
|
app:inputTextSize="16sp"/>
|
|
|
|
</RelativeLayout>
|