summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_suggestion.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/drawer_suggestion.xml')
-rw-r--r--app/src/main/res/layout/drawer_suggestion.xml109
1 files changed, 109 insertions, 0 deletions
diff --git a/app/src/main/res/layout/drawer_suggestion.xml b/app/src/main/res/layout/drawer_suggestion.xml
new file mode 100644
index 000000000..e12a5c1b6
--- /dev/null
+++ b/app/src/main/res/layout/drawer_suggestion.xml
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="utf-8"?><!--
+ Copyright 2021 Thomas Schneider
+
+ This file is a part of Fedilab
+
+ 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.
+
+ Fedilab 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 Fedilab; if not,
+ see <http://www.gnu.org/licenses>
+-->
+<com.google.android.material.card.MaterialCardView 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="wrap_content"
+ android:layout_marginHorizontal="6dp"
+ android:layout_marginTop="6dp"
+ android:backgroundTint="@color/cyanea_primary_dark_reference"
+ app:cardElevation="0dp">
+
+ <androidx.constraintlayout.widget.ConstraintLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="6dp">
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:id="@+id/avatar"
+ android:layout_width="56dp"
+ android:layout_height="56dp"
+ android:scaleType="fitCenter"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ tools:src="@drawable/ic_person" />
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/display_name"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="6dp"
+ android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
+ app:layout_constraintBottom_toTopOf="@id/username"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@id/avatar"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintVertical_chainStyle="packed"
+ tools:text="@tools:sample/full_names" />
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/username"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="6dp"
+ android:ellipsize="end"
+ android:singleLine="true"
+ app:layout_constraintBottom_toBottomOf="@id/avatar"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@id/avatar"
+ app:layout_constraintTop_toBottomOf="@id/display_name"
+ tools:text="\@username@instance.test" />
+
+ <com.google.android.material.textview.MaterialTextView
+ android:id="@+id/bio"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="6dp"
+ android:ellipsize="end"
+ android:maxLines="2"
+ android:textAppearance="@style/TextAppearance.MaterialComponents.Caption"
+ app:layout_constraintTop_toBottomOf="@id/avatar"
+ tools:text="@tools:sample/lorem/random" />
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/not_interested"
+ style="@style/Widget.MaterialComponents.Button.OutlinedButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:layout_marginTop="6dp"
+ android:text="@string/not_interested"
+ android:textColor="@color/cyanea_accent_dark_reference"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/bio"
+ app:strokeColor="@color/cyanea_accent_dark_reference" />
+
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/follow_action"
+ style="@style/Widget.MaterialComponents.Button"
+ android:layout_width="36dp"
+ android:layout_height="36dp"
+ android:layout_marginStart="12dp"
+ android:layout_marginTop="6dp"
+ android:insetTop="0dp"
+ android:insetBottom="0dp"
+ android:padding="6dp"
+ app:icon="@drawable/ic_baseline_person_add_24"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/bio" />
+
+ </androidx.constraintlayout.widget.ConstraintLayout>
+
+</com.google.android.material.card.MaterialCardView>