Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/dialog_assignee.xml')
-rw-r--r--app/src/main/res/layout/dialog_assignee.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/res/layout/dialog_assignee.xml b/app/src/main/res/layout/dialog_assignee.xml
new file mode 100644
index 000000000..c0f3e3218
--- /dev/null
+++ b/app/src/main/res/layout/dialog_assignee.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <ImageView
+ android:id="@+id/avatar"
+ android:layout_width="match_parent"
+ android:layout_height="200dp"
+ android:contentDescription="@string/user_avatar"
+ android:scaleType="centerCrop"
+ android:src="@drawable/ic_person_grey600_24dp" />
+
+ <TextView
+ android:padding="?dialogPreferredPadding"
+ android:id="@+id/displayName"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="?attr/textAppearanceHeadline1"
+ tools:text="@tools:sample/full_names" />
+</LinearLayout> \ No newline at end of file