mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-17 22:21:57 +03:00
4c64686abc
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
Nextcloud Talk application
|
|
|
|
Copyright (C) 2022 Andy Scherzinger
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/item_height"
|
|
android:background="?android:attr/selectableItemBackground">
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="@dimen/avatar_size"
|
|
android:layout_height="@dimen/avatar_size"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_margin="@dimen/standard_margin"
|
|
app:roundAsCircle="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:ellipsize="middle"
|
|
android:gravity="center_vertical|start"
|
|
android:textColor="@color/high_emphasis_text"
|
|
android:textSize="@dimen/bottom_sheet_text_size"
|
|
tools:text="Participant Name" />
|
|
|
|
<androidx.emoji.widget.EmojiTextView
|
|
android:id="@+id/reaction"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:gravity="center"
|
|
android:textSize="24sp"
|
|
android:layout_marginEnd="@dimen/standard_half_margin"
|
|
tools:text="@string/default_emoji" />
|
|
|
|
</LinearLayout>
|