fix:修复首页Tab页无数据的提示文案

This commit is contained in:
Max
2024-02-23 15:51:02 +08:00
parent 7093cfa7f3
commit 7a677c96cd
2 changed files with 1 additions and 8 deletions

View File

@@ -80,7 +80,7 @@ class HomeTabFragment : BaseViewBindingFragment<FragmentRecommendBinding>() {
.setPageSize(20)
.setAdapter(roomHotAdapter)
.setRecyclerView(binding.mRecyclerRoom)
.setEmptyView(EmptyViewHelper.createEmptyTextViewHeight(context, "暂无熱門推薦"))
.setEmptyView(EmptyViewHelper.createEmptyTextViewHeight(context, "暂无數據"))
.setLayoutManager(GridLayoutManager(mContext, 2))
.build()

View File

@@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#727272" />
<corners android:radius="@dimen/dp_7" />
</shape>