update:更新日榜周榜提示語

This commit is contained in:
2022-08-30 13:30:13 +08:00
parent 31b7667a3d
commit c7360bea9d
6 changed files with 50 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/bg_black"
@@ -103,12 +104,34 @@
android:layout_height="0dp"
android:visibility="gone" />
<ImageView
android:id="@+id/no_more"
android:layout_width="233dp"
android:layout_height="233dp"
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/no_more_layout"
android:layout_width="333dp"
android:layout_height="333dp"
android:layout_gravity="center"
android:visibility="gone" />
android:visibility="gone">
<ImageView
android:id="@+id/no_more"
android:layout_width="233dp"
android:layout_height="233dp"
android:layout_marginBottom="32dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/no_more_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:textSize="14sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/no_more" />
</androidx.constraintlayout.widget.ConstraintLayout>
<com.yunbao.common.custom.CommonRefreshView
android:id="@+id/refreshView"