diff --git a/app/src/main/java/io/legato/kazusa/ui/book/explore/ExploreShowActivity.kt b/app/src/main/java/io/legato/kazusa/ui/book/explore/ExploreShowActivity.kt index 5b8eb3dd0..3ff63b8b1 100644 --- a/app/src/main/java/io/legato/kazusa/ui/book/explore/ExploreShowActivity.kt +++ b/app/src/main/java/io/legato/kazusa/ui/book/explore/ExploreShowActivity.kt @@ -43,7 +43,6 @@ class ExploreShowActivity : VMBaseActivity) = binding.run { if (kinds.isEmpty()) { - llKind.gone() + tvKind.gone() + tvAuthorKind.gone() } else { - llKind.visible() - llKind.setLabels(kinds) { chips -> - chips.textSize = 12f - } + tvAuthorKind.visible() + tvKind.visible() + val kindText = kinds.joinToString(" • ") + tvKind.text = kindText } } diff --git a/app/src/main/res/layout/item_search.xml b/app/src/main/res/layout/item_search.xml index db49e5b53..8afd7c52f 100644 --- a/app/src/main/res/layout/item_search.xml +++ b/app/src/main/res/layout/item_search.xml @@ -1,159 +1,197 @@ - - - - + + android:padding="8dp" + android:clickable="true" + android:background="?attr/selectableItemBackground" + android:orientation="horizontal" + android:scrollbars="none"> - - - + - - - - - - - - - - - - - - + + + - + - - + + android:layout_weight="1" + android:layout_marginStart="8dp" + android:layout_gravity="center" + android:orientation="vertical"> - - + + - + - + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + \ No newline at end of file