1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-19 08:30:25 +08:00

v2.0.beta

This commit is contained in:
fumiama
2021-03-04 22:42:12 +08:00
parent 5bbe768882
commit 84e52e3bf5
180 changed files with 6422 additions and 2062 deletions

View File

@@ -0,0 +1,28 @@
<?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" />
</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>