88 lines
3.4 KiB
XML
88 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_131313"
|
|
android:orientation="vertical">
|
|
|
|
<!-- 상단: 레이블(좌/우) + 슬라이더(ProgressBar) -->
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/cl_ratio"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="24dp"
|
|
android:layout_marginTop="24dp"
|
|
android:visibility="gone">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_ratio"
|
|
style="@android:style/Widget.ProgressBar.Horizontal"
|
|
android:layout_width="0dp"
|
|
android:layout_height="10dp"
|
|
android:layout_marginTop="8dp"
|
|
android:clickable="false"
|
|
android:enabled="false"
|
|
android:focusable="false"
|
|
android:indeterminate="false"
|
|
android:max="100"
|
|
android:progress="0"
|
|
android:progressDrawable="@drawable/bg_gallery_progress"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/tv_ratio_left" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ratio_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="40% 보유중" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ratio_right"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="0 / 0개" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<!-- RecyclerView: 3열 그리드 -->
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_gallery"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_weight="1"
|
|
android:overScrollMode="never"
|
|
android:visibility="gone"
|
|
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
app:spanCount="3" />
|
|
|
|
<!-- 빈 상태 안내 -->
|
|
<TextView
|
|
android:id="@+id/tv_empty_gallery"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:gravity="center"
|
|
android:text="@string/character_gallery_empty"
|
|
android:textColor="@color/white"
|
|
android:textSize="20sp"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|