mirror of
https://github.com/SimpleMobileTools/Simple-Flashlight.git
synced 2025-04-03 05:01:07 +02:00
98 lines
3.5 KiB
Kotlin
98 lines
3.5 KiB
Kotlin
package com.simplemobiletools.flashlight.activities
|
|
|
|
import android.app.Activity
|
|
import android.appwidget.AppWidgetManager
|
|
import android.content.Intent
|
|
import android.graphics.Color
|
|
import android.os.Bundle
|
|
import android.widget.SeekBar
|
|
import com.simplemobiletools.commons.dialogs.ColorPickerDialog
|
|
import com.simplemobiletools.commons.extensions.adjustAlpha
|
|
import com.simplemobiletools.commons.extensions.applyColorFilter
|
|
import com.simplemobiletools.flashlight.R
|
|
import com.simplemobiletools.flashlight.extensions.config
|
|
import com.simplemobiletools.flashlight.helpers.MyWidgetProvider
|
|
import kotlinx.android.synthetic.main.widget_config.*
|
|
|
|
class WidgetConfigureActivity : SimpleActivity() {
|
|
private var mWidgetAlpha = 0f
|
|
private var mWidgetId = 0
|
|
private var mWidgetColor = 0
|
|
private var mWidgetColorWithoutTransparency = 0
|
|
|
|
public override fun onCreate(savedInstanceState: Bundle?) {
|
|
useDynamicTheme = false
|
|
super.onCreate(savedInstanceState)
|
|
setResult(Activity.RESULT_CANCELED)
|
|
setContentView(R.layout.widget_config)
|
|
initVariables()
|
|
|
|
val extras = intent.extras
|
|
if (extras != null)
|
|
mWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID)
|
|
|
|
if (mWidgetId == AppWidgetManager.INVALID_APPWIDGET_ID)
|
|
finish()
|
|
|
|
config_save.setOnClickListener { saveConfig() }
|
|
config_widget_color.setOnClickListener { pickBackgroundColor() }
|
|
}
|
|
|
|
private fun initVariables() {
|
|
mWidgetColor = config.widgetBgColor
|
|
if (mWidgetColor == 1) {
|
|
mWidgetColor = resources.getColor(R.color.color_primary)
|
|
mWidgetAlpha = 1f
|
|
} else {
|
|
mWidgetAlpha = Color.alpha(mWidgetColor) / 255.toFloat()
|
|
}
|
|
|
|
mWidgetColorWithoutTransparency = Color.rgb(Color.red(mWidgetColor), Color.green(mWidgetColor), Color.blue(mWidgetColor))
|
|
config_widget_seekbar.setOnSeekBarChangeListener(seekbarChangeListener)
|
|
config_widget_seekbar.progress = (mWidgetAlpha * 100).toInt()
|
|
updateColors()
|
|
}
|
|
|
|
private fun saveConfig() {
|
|
config.widgetBgColor = mWidgetColor
|
|
requestWidgetUpdate()
|
|
|
|
Intent().apply {
|
|
putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mWidgetId)
|
|
setResult(Activity.RESULT_OK, this)
|
|
}
|
|
finish()
|
|
}
|
|
|
|
private fun pickBackgroundColor() {
|
|
ColorPickerDialog(this, mWidgetColorWithoutTransparency) {
|
|
mWidgetColorWithoutTransparency = it
|
|
updateColors()
|
|
}
|
|
}
|
|
|
|
private fun requestWidgetUpdate() {
|
|
Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE, null, this, MyWidgetProvider::class.java).apply {
|
|
putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, intArrayOf(mWidgetId))
|
|
sendBroadcast(this)
|
|
}
|
|
}
|
|
|
|
private fun updateColors() {
|
|
mWidgetColor = mWidgetColorWithoutTransparency.adjustAlpha(mWidgetAlpha)
|
|
config_widget_color.setBackgroundColor(mWidgetColor)
|
|
config_image.background.mutate().applyColorFilter(mWidgetColor)
|
|
}
|
|
|
|
private val seekbarChangeListener = object : SeekBar.OnSeekBarChangeListener {
|
|
override fun onProgressChanged(seekBar: SeekBar, progress: Int, fromUser: Boolean) {
|
|
mWidgetAlpha = progress.toFloat() / 100.toFloat()
|
|
updateColors()
|
|
}
|
|
|
|
override fun onStartTrackingTouch(seekBar: SeekBar) {}
|
|
|
|
override fun onStopTrackingTouch(seekBar: SeekBar) {}
|
|
}
|
|
}
|