Migrate to MVVM

This commit is contained in:
Koitharu
2020-11-17 21:47:22 +02:00
parent eaac271143
commit 7d24286c55
273 changed files with 1926 additions and 2115 deletions

View File

@@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.details.MangaDetailsActivity">
tools:context=".details.ui.DetailsActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"

View File

@@ -6,7 +6,7 @@
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.list.MainActivity"
tools:context=".main.ui.MainActivity"
tools:openDrawer="start">
<androidx.coordinatorlayout.widget.CoordinatorLayout

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<org.koitharu.kotatsu.ui.reader.wetoon.WebtoonRecyclerView
<org.koitharu.kotatsu.reader.ui.wetoon.WebtoonRecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/recyclerView"

View File

@@ -15,7 +15,7 @@
android:layout_height="wrap_content"
android:orientation="vertical">
<org.koitharu.kotatsu.ui.base.widgets.CoverImageView
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
android:id="@+id/imageView_cover"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -6,7 +6,7 @@
android:background="?selectableItemBackground"
android:orientation="horizontal">
<org.koitharu.kotatsu.ui.base.widgets.CoverImageView
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
android:id="@+id/imageView_cover"
android:layout_width="wrap_content"
android:layout_height="match_parent"

View File

@@ -15,7 +15,7 @@
android:layout_height="match_parent"
android:orientation="horizontal">
<org.koitharu.kotatsu.ui.base.widgets.CoverImageView
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
android:id="@+id/imageView_cover"
android:layout_width="wrap_content"
android:layout_height="match_parent"

View File

@@ -6,7 +6,7 @@
android:layout_height="wrap_content"
android:background="?attr/scrimBackground">
<org.koitharu.kotatsu.ui.base.widgets.CoverImageView
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
android:id="@+id/imageView_thumb"
android:layout_width="match_parent"
android:layout_height="wrap_content"

View File

@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<org.koitharu.kotatsu.ui.reader.wetoon.WebtoonFrameLayout
<org.koitharu.kotatsu.reader.ui.wetoon.WebtoonFrameLayout
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">
<org.koitharu.kotatsu.ui.reader.wetoon.WebtoonImageView
<org.koitharu.kotatsu.reader.ui.wetoon.WebtoonImageView
android:id="@+id/ssiv"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -52,4 +52,4 @@
</LinearLayout>
</org.koitharu.kotatsu.ui.reader.wetoon.WebtoonFrameLayout>
</org.koitharu.kotatsu.reader.ui.wetoon.WebtoonFrameLayout>

View File

@@ -28,7 +28,7 @@
android:textColor="?android:attr/textColorPrimary"
tools:text="@tools:sample/lorem[1]" />
<org.koitharu.kotatsu.ui.base.widgets.CheckableImageView
<org.koitharu.kotatsu.base.ui.widgets.CheckableImageView
android:id="@+id/imageView_hidden"
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@@ -15,7 +15,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content">
<org.koitharu.kotatsu.ui.base.widgets.CoverImageView
<org.koitharu.kotatsu.base.ui.widgets.CoverImageView
android:id="@+id/imageView_cover"
android:layout_width="87dp"
android:layout_height="wrap_content"

View File

@@ -39,7 +39,7 @@
app:updatesContinuously="true" />
<PreferenceScreen
android:fragment="org.koitharu.kotatsu.ui.settings.sources.SourcesSettingsFragment"
android:fragment="org.koitharu.kotatsu.settings.sources.SourcesSettingsFragment"
android:key="remote_sources"
android:title="@string/remote_sources"
app:allowDividerAbove="true"
@@ -51,7 +51,7 @@
app:iconSpaceReserved="false" />
<PreferenceScreen
android:fragment="org.koitharu.kotatsu.ui.settings.HistorySettingsFragment"
android:fragment="org.koitharu.kotatsu.settings.HistorySettingsFragment"
android:title="@string/history_and_cache"
app:iconSpaceReserved="false" />
@@ -124,7 +124,7 @@
app:iconSpaceReserved="false">
<PreferenceScreen
android:fragment="org.koitharu.kotatsu.ui.settings.backup.BackupSettingsFragment"
android:fragment="org.koitharu.kotatsu.settings.backup.BackupSettingsFragment"
android:title="@string/backup_restore"
app:iconSpaceReserved="false" />

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android"
android:configure="org.koitharu.kotatsu.ui.widget.shelf.ShelfConfigActivity"
android:configure="org.koitharu.kotatsu.widget.shelf.ShelfConfigActivity"
android:initialLayout="@layout/widget_shelf"
android:minWidth="110dp"
android:minHeight="110dp"