2025-05-06 14:07:11 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-05-09 14:52:31 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2025-04-27 13:01:05 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:fillViewport="true">
|
2025-04-27 13:01:05 +00:00
|
|
|
|
2025-05-06 14:07:11 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
2025-04-27 13:01:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:paddingBottom="32dp">
|
2025-04-27 13:01:05 +00:00
|
|
|
|
2025-05-09 14:52:31 +00:00
|
|
|
<!-- Header con avatar + nombre -->
|
2025-05-06 14:07:11 +00:00
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="200dp">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/coverImage"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:src="@drawable/sample_cover" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/avatarImage"
|
|
|
|
|
android:layout_width="80dp"
|
|
|
|
|
android:layout_height="80dp"
|
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
|
android:background="@drawable/circle_mask"
|
|
|
|
|
android:clipToOutline="true"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
android:src="@drawable/ic_profile" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/usernameText"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignBottom="@id/avatarImage"
|
|
|
|
|
android:layout_toEndOf="@id/avatarImage"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_marginStart="12dp"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:text="BtwIsSanti"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
2025-05-09 14:52:31 +00:00
|
|
|
<!-- Descripción en tarjeta -->
|
|
|
|
|
<androidx.cardview.widget.CardView
|
2025-05-06 14:07:11 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_margin="16dp"
|
|
|
|
|
app:cardCornerRadius="16dp"
|
|
|
|
|
app:cardElevation="6dp">
|
2025-05-06 14:07:11 +00:00
|
|
|
|
2025-05-09 14:52:31 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="16dp"
|
|
|
|
|
android:background="@color/primary">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/descriptionTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Description"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textSize="18sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/profileDescriptionText"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Eiko is my waifu right now. Mai and Mikasa is my second wife."
|
|
|
|
|
android:textColor="@color/textPrimary"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:layout_marginTop="8dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textViewSeeMore"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Ver más"
|
|
|
|
|
android:textColor="@color/activeTint"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:paddingTop="4dp" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
|
|
<!-- Estadísticas de anime -->
|
2025-05-06 14:07:11 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Anime Stats"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:textSize="18sp"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="12dp" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/animeStatsContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_margin="16dp" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
2025-05-09 14:52:31 +00:00
|
|
|
<!-- Estadísticas de manga -->
|
2025-05-06 14:07:11 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Manga Stats"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:textSize="18sp"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="12dp" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/mangaStatsContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_margin="16dp" />
|
|
|
|
|
|
|
|
|
|
<!-- Actividad reciente -->
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Recent Activity"
|
|
|
|
|
android:textSize="18sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
|
android:layout_marginTop="12dp" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/activityContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:layout_marginBottom="32dp"
|
|
|
|
|
android:paddingBottom="8dp" />
|
2025-05-06 14:07:11 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</ScrollView>
|