优化发现界面显示

This commit is contained in:
HapeLee
2025-10-11 20:30:13 +08:00
parent d85f50931d
commit da30350ffa
2 changed files with 25 additions and 7 deletions
@@ -67,7 +67,7 @@ class ExploreAdapter(
if (isExpanded) {
ivStatus.icon = ContextCompat.getDrawable(context, R.drawable.ic_arrow_right)
ivStatus.rotation = 90f
rotateLoading.visible()
if (scrollToId == item.bookSourceUrl) {
val pos = holder.bindingAdapterPosition
if (pos >= 0) callBack.scrollTo(pos)
@@ -78,6 +78,8 @@ class ExploreAdapter(
item.exploreKinds()
}.onSuccess { kindList ->
upKindList(flexbox, item.bookSourceUrl, kindList)
}.onFinally {
rotateLoading.gone()
}
} else {
ivStatus.icon = ContextCompat.getDrawable(context, R.drawable.ic_arrow_right)
+22 -6
View File
@@ -14,7 +14,7 @@
android:animateLayoutChanges="true"
android:background="?attr/selectableItemBackground">
<LinearLayout
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
@@ -25,19 +25,35 @@
android:id="@+id/tv_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="@style/TextAppearance.Material3.TitleMedium"
tools:text="起点中文" />
tools:text="起点中文"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_status"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/iv_status"
style="@style/Widget.Material3Expressive.Button.IconButton.Tonal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:icon="@drawable/ic_arrow_right"/>
app:icon="@drawable/ic_arrow_right"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"/>
</LinearLayout>
<com.google.android.material.loadingindicator.LoadingIndicator
android:id="@+id/rotate_loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:indicatorSize="24dp"
android:visibility="gone"
app:layout_constraintTop_toTopOf="@id/iv_status"
app:layout_constraintBottom_toBottomOf="@id/iv_status"
app:layout_constraintStart_toStartOf="@id/iv_status"
app:layout_constraintEnd_toEndOf="@id/iv_status"/>
</androidx.constraintlayout.widget.ConstraintLayout>
<com.google.android.flexbox.FlexboxLayout
android:id="@+id/flexbox"