mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-26 22:47:59 +01:00
allow changing the slideshow animation
This commit is contained in:
parent
c60e321278
commit
86ac8caad7
1 changed files with 21 additions and 0 deletions
|
@ -3,11 +3,15 @@ package com.simplemobiletools.gallery.pro.dialogs
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.appcompat.app.AlertDialog
|
import androidx.appcompat.app.AlertDialog
|
||||||
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
import com.simplemobiletools.commons.activities.BaseSimpleActivity
|
||||||
|
import com.simplemobiletools.commons.dialogs.RadioGroupDialog
|
||||||
import com.simplemobiletools.commons.extensions.hideKeyboard
|
import com.simplemobiletools.commons.extensions.hideKeyboard
|
||||||
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
import com.simplemobiletools.commons.extensions.setupDialogStuff
|
||||||
|
import com.simplemobiletools.commons.extensions.value
|
||||||
|
import com.simplemobiletools.commons.models.RadioItem
|
||||||
import com.simplemobiletools.gallery.pro.R
|
import com.simplemobiletools.gallery.pro.R
|
||||||
import com.simplemobiletools.gallery.pro.extensions.config
|
import com.simplemobiletools.gallery.pro.extensions.config
|
||||||
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_ANIMATION_FADE
|
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_ANIMATION_FADE
|
||||||
|
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_ANIMATION_NONE
|
||||||
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_ANIMATION_SLIDE
|
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_ANIMATION_SLIDE
|
||||||
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_DEFAULT_INTERVAL
|
import com.simplemobiletools.gallery.pro.helpers.SLIDESHOW_DEFAULT_INTERVAL
|
||||||
import kotlinx.android.synthetic.main.dialog_slideshow.view.*
|
import kotlinx.android.synthetic.main.dialog_slideshow.view.*
|
||||||
|
@ -31,7 +35,15 @@ class SlideshowDialog(val activity: BaseSimpleActivity, val callback: () -> Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
animation_holder.setOnClickListener {
|
animation_holder.setOnClickListener {
|
||||||
|
val items = arrayListOf(
|
||||||
|
RadioItem(SLIDESHOW_ANIMATION_NONE, activity.getString(R.string.no_animation)),
|
||||||
|
RadioItem(SLIDESHOW_ANIMATION_SLIDE, activity.getString(R.string.slide)),
|
||||||
|
RadioItem(SLIDESHOW_ANIMATION_FADE, activity.getString(R.string.fade)))
|
||||||
|
|
||||||
|
RadioGroupDialog(activity, items, activity.config.slideshowAnimation) {
|
||||||
|
activity.config.slideshowAnimation = it as Int
|
||||||
|
animation_value.text = getAnimationText()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
include_videos_holder.setOnClickListener {
|
include_videos_holder.setOnClickListener {
|
||||||
|
@ -95,6 +107,7 @@ class SlideshowDialog(val activity: BaseSimpleActivity, val callback: () -> Unit
|
||||||
interval = SLIDESHOW_DEFAULT_INTERVAL.toString()
|
interval = SLIDESHOW_DEFAULT_INTERVAL.toString()
|
||||||
|
|
||||||
activity.config.apply {
|
activity.config.apply {
|
||||||
|
slideshowAnimation = getAnimationValue(view.animation_value.value)
|
||||||
slideshowInterval = interval.toInt()
|
slideshowInterval = interval.toInt()
|
||||||
slideshowIncludeVideos = view.include_videos.isChecked
|
slideshowIncludeVideos = view.include_videos.isChecked
|
||||||
slideshowIncludeGIFs = view.include_gifs.isChecked
|
slideshowIncludeGIFs = view.include_gifs.isChecked
|
||||||
|
@ -111,4 +124,12 @@ class SlideshowDialog(val activity: BaseSimpleActivity, val callback: () -> Unit
|
||||||
else -> activity.getString(R.string.no_animation)
|
else -> activity.getString(R.string.no_animation)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun getAnimationValue(text: String): Int {
|
||||||
|
return when (text) {
|
||||||
|
activity.getString(R.string.slide) -> SLIDESHOW_ANIMATION_SLIDE
|
||||||
|
activity.getString(R.string.fade) -> SLIDESHOW_ANIMATION_FADE
|
||||||
|
else -> SLIDESHOW_ANIMATION_NONE
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue