mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-12 19:58:35 +08:00
v2.1.1
新增 1. 启动时尝试登陆失败提示 2. 热切换阅览模式 3. 拉进度条连续翻页超过3后松手时再更新进度 4. 更高清晰度支持 (可在设置调节) 修复 1. 大屏设备下用户头像过大 2. 阅览漫画时加载图片过快导致触发访问限制 3. 白色背景下无法显示页码标号 4. 闪退重新拉起时继续闪退 5. 非ViewPager阅读漫画异常CPU占用 优化 1. 默认api地址更改为api.copymanga.tv 2. 字符串与常量定义 3. 首页下拉刷新行为 4. 竖向、单页模式下漫画加载速度 5. 封面加载速度
This commit is contained in:
@@ -3,7 +3,8 @@
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/vcp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:alpha="0.1">
|
||||
|
||||
<include
|
||||
android:id="@+id/vone"
|
||||
@@ -35,7 +36,7 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" >
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
</androidx.viewpager2.widget.ViewPager2>
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:foreground="?android:attr/selectableItemBackground"
|
||||
app:cardCornerRadius="@dimen/global_radius"
|
||||
app:cardElevation="@dimen/global_card_elevation"
|
||||
app:cardCornerRadius="@dimen/book_card_radius"
|
||||
app:cardElevation="@dimen/book_card_elevation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:foreground="?android:attr/selectableItemBackground"
|
||||
app:cardCornerRadius="@dimen/global_radius"
|
||||
app:cardElevation="@dimen/global_card_elevation"
|
||||
app:cardCornerRadius="@dimen/book_card_radius"
|
||||
app:cardElevation="@dimen/book_card_elevation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
@@ -12,7 +12,8 @@
|
||||
android:id="@+id/swiperefresh"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="64dp">
|
||||
android:isScrollContainer="true"
|
||||
android:layout_marginTop="@dimen/search_layout_padding">
|
||||
|
||||
<top.fumiama.copymanga.views.ScrollRefreshView
|
||||
android:id="@+id/fhov"
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<ImageView
|
||||
android:id="@+id/navhbg"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:foreground="@drawable/mask_blackbottom"
|
||||
android:onClick="onNavHBgClicked"
|
||||
android:scaleType="centerCrop"
|
||||
@@ -41,10 +41,10 @@
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/navhicon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="@dimen/user_icon_size"
|
||||
android:layout_height="@dimen/user_icon_size"
|
||||
android:layout_marginBottom="@dimen/nav_header_vertical_spacing"
|
||||
android:alpha="@dimen/global_alpha"
|
||||
android:alpha="@dimen/user_icon_alpha"
|
||||
android:onClick="startLoginActivity"
|
||||
app:layout_constraintBottom_toTopOf="@+id/navttitle"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:foreground="?android:attr/selectableItemBackground"
|
||||
app:cardCornerRadius="@dimen/global_radius"
|
||||
app:cardElevation="@dimen/global_card_elevation"
|
||||
app:cardCornerRadius="@dimen/book_card_radius"
|
||||
app:cardElevation="@dimen/book_card_elevation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
|
||||
Reference in New Issue
Block a user