-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_item_layout.xml
27 lines (23 loc) · 1.03 KB
/
user_item_layout.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<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="250dp"
android:layout_margin="5dp"
app:cardCornerRadius="15dp"
android:layout_height="wrap_content"
app:cardElevation="7dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="4dp"
android:gravity="center_vertical">
<ImageView
android:id="@+id/senderImage"
android:layout_width="178dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
tools:src="@drawable/pic2" /> <!-- Use a placeholder image for preview in the layout editor -->
</LinearLayout>
</com.google.android.material.card.MaterialCardView>