80 lines
2.8 KiB
XML
80 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="168dp"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:layout_width="168dp"
|
|
android:layout_height="168dp"
|
|
android:background="@color/black">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_character"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:contentDescription="@null"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ranking"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:includeFontPadding="false"
|
|
android:maxLines="1"
|
|
android:textColor="@color/white"
|
|
android:textSize="72sp"
|
|
tools:text="1" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_new"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="end"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:background="@drawable/bg_circle_3bb9f1"
|
|
android:fontFamily="@font/pretendard_medium"
|
|
android:gravity="center"
|
|
android:includeFontPadding="false"
|
|
android:maxLines="1"
|
|
android:text="@string/screen_character_tab_new_badge"
|
|
android:textColor="@color/white"
|
|
android:textSize="18sp"
|
|
android:visibility="gone" />
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="6dp"
|
|
android:layout_marginTop="4dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_character_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:maxLines="1"
|
|
android:textColor="@color/color_b0bec5"
|
|
android:textSize="18sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_character_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:ellipsize="end"
|
|
android:fontFamily="@font/pretendard_regular"
|
|
android:maxLines="1"
|
|
android:textColor="#78909C"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|