Storio imported from Jitpack. Also fix an issue with the progress bar animation on the reader
This commit is contained in:
parent
0afd77d110
commit
f12d5ba689
@ -161,7 +161,9 @@ dependencies {
|
|||||||
implementation 'com.github.gabrielemariotti.changeloglib:changelog:2.1.0'
|
implementation 'com.github.gabrielemariotti.changeloglib:changelog:2.1.0'
|
||||||
|
|
||||||
// Database
|
// Database
|
||||||
implementation 'eu.kanade.storio:storio:1.13.0'
|
implementation 'android.arch.persistence:db:1.0.0'
|
||||||
|
implementation 'com.github.inorichi.storio:storio-common:8be19de@aar'
|
||||||
|
implementation 'com.github.inorichi.storio:storio-sqlite:8be19de@aar'
|
||||||
implementation 'io.requery:sqlite-android:3.25.2'
|
implementation 'io.requery:sqlite-android:3.25.2'
|
||||||
|
|
||||||
// Model View Presenter
|
// Model View Presenter
|
||||||
|
@ -116,21 +116,15 @@ class ReaderProgressBar @JvmOverloads constructor(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when the aggregated visibility of this view changes. It also starts of stops the
|
* Called when the visibility of this view changes.
|
||||||
* rotation animation according to [isVisible].
|
|
||||||
*/
|
*/
|
||||||
override fun onVisibilityAggregated(isVisible: Boolean) {
|
override fun setVisibility(visibility: Int) {
|
||||||
super.onVisibilityAggregated(isVisible)
|
super.setVisibility(visibility)
|
||||||
|
val isVisible = visibility == View.VISIBLE
|
||||||
if (isVisible != aggregatedIsVisible) {
|
if (isVisible) {
|
||||||
aggregatedIsVisible = isVisible
|
startAnimation()
|
||||||
|
} else {
|
||||||
// let's be nice with the UI thread
|
stopAnimation()
|
||||||
if (isVisible) {
|
|
||||||
startAnimation()
|
|
||||||
} else {
|
|
||||||
stopAnimation()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,6 +22,5 @@ allprojects {
|
|||||||
maven { url "https://jitpack.io" }
|
maven { url "https://jitpack.io" }
|
||||||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
||||||
jcenter()
|
jcenter()
|
||||||
maven { url "https://dl.bintray.com/inorichi/maven" }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user