70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
app:cardCornerRadius="12dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="12dp">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
app:cardCornerRadius="24dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivUserAvatar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/ic_nav_profile" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tvUserName"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Username"
|
|
android:textColor="@color/text_primary"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvUserStats"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="🔥 12 dias • Bronze"
|
|
android:textColor="@color/text_secondary"
|
|
android:textSize="12sp" />
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/btnAddFriend"
|
|
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="36dp"
|
|
android:paddingHorizontal="16dp"
|
|
android:text="Adicionar"
|
|
android:textAllCaps="false"
|
|
android:textColor="@color/primary_purple"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
app:strokeColor="@color/primary_purple" />
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|