This commit is contained in:
kunfei 2022-05-21 13:08:56 +08:00
parent f3e46a130f
commit adaace696b
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class RemoteBookActivity : VMBaseActivity<ActivityRemoteBookBinding,RemoteBookVi
launch {
viewModel.dataFlow.conflate().collect { remoteBooks ->
binding.refreshProgressBar.isAutoLoading = false
binding.tvEmptyMsg.isGone = remoteBooks.isEmpty()
binding.tvEmptyMsg.isGone = remoteBooks.isNotEmpty()
adapter.setItems(remoteBooks)
}
}

View File

@ -46,7 +46,7 @@
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:gravity="center"
android:visibility="visible"
android:visibility="gone"
android:text="webDav book文件夹为空"
app:layout_constraintTop_toBottomOf="@+id/title_bar"
app:layout_constraintBottom_toBottomOf="parent"