2025-05-06 14:07:11 +00:00
|
|
|
<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
|
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-21 01:19:59 +00:00
|
|
|
android:orientation="vertical"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:paddingBottom="32dp">
|
2025-04-27 13:01:05 +00:00
|
|
|
|
2025-05-21 01:19:59 +00:00
|
|
|
<!-- Encabezado: Cover, Avatar y 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_alignParentStart="true"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_margin="16dp"
|
2025-05-06 14:07:11 +00:00
|
|
|
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"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:layout_marginStart="12dp"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_toEndOf="@id/avatarImage"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:text="BtwIsSanti"
|
|
|
|
|
android:textColor="@color/textPrimary"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
2025-05-21 01:19:59 +00:00
|
|
|
|
|
|
|
|
<!-- Biografía -->
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/editBiography"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:background="@drawable/edittext_background"
|
|
|
|
|
android:hint="Escribe tu biografía aquí"
|
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
|
android:minLines="3" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/buttonSaveBio"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Guardar Biografía" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
2025-05-21 01:19:59 +00:00
|
|
|
<!-- Estadísticas de Anime -->
|
2025-05-06 14:07:11 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginTop="16dp"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:text="Anime Stats"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:textSize="18sp"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:textStyle="bold" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/animeStatsContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
android:orientation="vertical" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
2025-05-21 01:19:59 +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"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginTop="16dp"
|
2025-05-06 14:07:11 +00:00
|
|
|
android:text="Manga Stats"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:textSize="18sp"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:textStyle="bold" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/mangaStatsContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
|
|
<!-- Estado / Pensamiento -->
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/editStatus"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:background="@drawable/edittext_background"
|
|
|
|
|
android:hint="¿Qué estás pensando?"
|
|
|
|
|
android:inputType="text" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/buttonPostStatus"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Publicar Estado" />
|
2025-05-09 14:52:31 +00:00
|
|
|
|
|
|
|
|
<!-- Actividad reciente -->
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:text="Actividad Reciente"
|
2025-05-09 14:52:31 +00:00
|
|
|
android:textSize="18sp"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:textStyle="bold" />
|
2025-05-06 14:07:11 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/activityContainer"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-21 01:19:59 +00:00
|
|
|
android:orientation="vertical" />
|
2025-05-06 14:07:11 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</ScrollView>
|