2018-11-28 19:15:30 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2017-10-23 13:40:38 +03:00
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
2017-10-24 22:37:04 +03:00
|
|
|
~ @author Andy Scherzinger
|
2017-10-23 13:40:38 +03:00
|
|
|
~ Copyright (C) 2017 Mario Danic
|
2017-10-24 22:37:04 +03:00
|
|
|
~ Copyright (C) 2017 Andy Scherzinger
|
2017-10-23 13:40:38 +03:00
|
|
|
~
|
|
|
|
~ 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"
|
2018-11-28 19:15:30 +03:00
|
|
|
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:orientation="vertical">
|
2017-10-23 13:40:38 +03:00
|
|
|
|
2018-02-02 13:40:42 +03:00
|
|
|
<com.nextcloud.talk.utils.MagicFlipView
|
|
|
|
android:id="@+id/avatar_flip_view"
|
2017-10-24 22:22:01 +03:00
|
|
|
android:layout_width="@dimen/avatar_size"
|
|
|
|
android:layout_height="@dimen/avatar_size"
|
2017-10-23 13:40:38 +03:00
|
|
|
android:layout_centerVertical="true"
|
2018-04-26 11:42:30 +03:00
|
|
|
android:layout_marginStart="48dp"
|
2018-11-28 19:15:30 +03:00
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
2018-02-02 13:40:42 +03:00
|
|
|
app:animationDuration="170"
|
|
|
|
app:enableInitialAnimation="true"
|
2018-11-28 19:15:30 +03:00
|
|
|
app:rearBackgroundColor="@color/colorPrimary" />
|
2017-10-23 13:40:38 +03:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/name_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginEnd="@dimen/activity_horizontal_margin"
|
2018-02-02 13:40:42 +03:00
|
|
|
android:layout_toEndOf="@id/avatar_flip_view"
|
|
|
|
android:ellipsize="end"
|
2017-10-24 22:22:01 +03:00
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
2018-11-28 19:15:30 +03:00
|
|
|
tools:text="Contact item text" />
|
2017-10-23 13:40:38 +03:00
|
|
|
|
2017-10-25 00:18:34 +03:00
|
|
|
</RelativeLayout>
|