mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-13 12:20:26 +08:00
2.0.beta5
0. 增加排行 1. 延长加载时间 2. 返回后停止下载/加载章节 3. 大幅提升章节加载速度 4. 修复加载中返回闪退 5. 修复专题加载异常
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="top.fumiama.copymanga.ui.rank.RankFragment">
|
||||
tools:context="top.fumiama.copymanga.ui.cardflow.rank.RankFragment">
|
||||
|
||||
<include
|
||||
android:id="@+id/frlai"
|
||||
layout="@layout/line_finish"
|
||||
layout="@layout/line_rank"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
|
||||
51
app/src/main/res/layout/line_rank.xml
Normal file
51
app/src/main/res/layout/line_rank.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?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"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<include
|
||||
layout="@layout/div_h"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="1dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/lrt" />
|
||||
|
||||
<com.google.android.material.tabs.TabLayout
|
||||
android:id="@+id/lrt"
|
||||
android:layout_width="0dp"
|
||||
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">
|
||||
|
||||
<com.google.android.material.tabs.TabItem
|
||||
android:id="@+id/lrtifast"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/rank_fast" />
|
||||
|
||||
<com.google.android.material.tabs.TabItem
|
||||
android:id="@+id/lrtiweek"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/rank_week" />
|
||||
|
||||
<com.google.android.material.tabs.TabItem
|
||||
android:id="@+id/lrtimonth"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/rank_month" />
|
||||
|
||||
<com.google.android.material.tabs.TabItem
|
||||
android:id="@+id/lrtiall"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/rank_all" />
|
||||
</com.google.android.material.tabs.TabLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user