1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-09 09:43:11 +08:00
Files
copymanga/app/src/main/res/layout/fragment_book.xml
源文雨 4269d9ab6b v2.0.beta16
修复
1. 返回主页闪退
2. 下载为空
优化
1. 增加全局底部 padding
2. 优化工具栏显示
3. 删除了冗余代码
4. 主页响应更流畅
2022-12-17 23:45:34 +08:00

29 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<top.fumiama.copymanga.views.OverScrollView
android:id="@+id/fbov"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/fbl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/global_content_padding_bottom"/>
</top.fumiama.copymanga.views.OverScrollView>
<ProgressBar
android:id="@+id/fbloading"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>