- 소장한 콘텐츠만 알람으로 지정 가능하다는 안내문구 추가
This commit is contained in:
klaus 2024-07-25 18:20:24 +09:00
parent 7b4063420e
commit 2223919a98
1 changed files with 25 additions and 23 deletions

View File

@ -1,20 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/black"> android:background="@color/black"
android:orientation="vertical">
<RelativeLayout <RelativeLayout
android:id="@+id/toolbar" android:id="@+id/toolbar"
android:layout_width="0dp" android:layout_width="match_parent"
android:layout_height="51.7dp" android:layout_height="51.7dp"
android:background="@color/black" android:background="@color/black"
android:paddingHorizontal="13.3dp" android:paddingHorizontal="13.3dp">
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView <TextView
android:id="@+id/tv_back" android:id="@+id/tv_back"
@ -42,28 +40,32 @@
android:src="@drawable/ic_plus_no_bg" /> android:src="@drawable/ic_plus_no_bg" />
</RelativeLayout> </RelativeLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="13.3dp"
android:layout_marginVertical="10dp"
android:fontFamily="@font/gmarket_sans_medium"
android:lineSpacingExtra="4sp"
android:text="※ 소장중인 콘텐츠만 알람 콘텐츠로 설정할 수 있습니다. 알람 설정 전 콘텐츠 마켓에서 마음에 드는 콘텐츠를 소장하세요."
android:textColor="@android:color/darker_gray"
android:textSize="14sp" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_alarm" android:id="@+id/rv_alarm"
android:layout_width="0dp" android:layout_width="match_parent"
android:layout_height="0dp" android:layout_height="match_parent"
android:clipToPadding="false" android:clipToPadding="false"
android:paddingHorizontal="13.3dp" android:paddingHorizontal="13.3dp"
android:visibility="gone" android:visibility="gone" />
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
<TextView <TextView
android:id="@+id/tv_empty_alarms" android:id="@+id/tv_empty_alarms"
android:layout_width="wrap_content" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="match_parent"
android:fontFamily="@font/gmarket_sans_medium"
android:gravity="center"
android:text="알람이 없습니다" android:text="알람이 없습니다"
android:textColor="@android:color/darker_gray" android:textColor="@android:color/darker_gray"
android:textSize="18sp" android:textSize="18sp" />
android:visibility="gone" </LinearLayout>
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/toolbar" />
</androidx.constraintlayout.widget.ConstraintLayout>