Compare commits
51 Commits
v2.3.3
...
v2.3.3-pat
Author | SHA1 | Date | |
---|---|---|---|
183901534c | |||
6d7d90e762 | |||
e89b377b68 | |||
e0eb6f77da | |||
43c08204c3 | |||
6f125573e0 | |||
380dc96c40 | |||
821980e938 | |||
9f47d626a9 | |||
d3b623cf13 | |||
1389ddbfc0 | |||
0dbbe0e5d2 | |||
818b4ec0ba | |||
8c84913cd8 | |||
43f085b13c | |||
3ab42fd163 | |||
ea0be72478 | |||
c744d3c7f8 | |||
7b93548b0b | |||
260e36b305 | |||
00af2159ea | |||
c26021de03 | |||
218dae8cc2 | |||
b3e2d8d843 | |||
80d1077dab | |||
dd2a74aaf6 | |||
fb1953d513 | |||
b081b9adbb | |||
fd398faf42 | |||
e14662c534 | |||
4224562512 | |||
f13d426831 | |||
5dc7a1b30d | |||
6538cdebc2 | |||
78709ed018 | |||
c0e87047c2 | |||
1a2c97d61f | |||
4335751749 | |||
9bbc816bea | |||
e8a6743dc4 | |||
5d8ceb98cc | |||
dfff4c5e1b | |||
13f8814480 | |||
8608f9adf3 | |||
ad65cf0e84 | |||
285b754dd5 | |||
194a2ab456 | |||
bca22d5aa8 | |||
35536a89a0 | |||
6780a470e9 | |||
6ca6b5ab95 |
@ -22,7 +22,7 @@ android {
|
|||||||
applicationId "com.tommasoberlose.anotherwidget"
|
applicationId "com.tommasoberlose.anotherwidget"
|
||||||
minSdkVersion 23
|
minSdkVersion 23
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 138
|
versionCode 139
|
||||||
versionName "2.3.3"
|
versionName "2.3.3"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
<uses-permission android:name="android.permission.READ_CALENDAR" />
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||||
|
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
<uses-permission android:name="com.android.vending.BILLING" />
|
<uses-permission android:name="com.android.vending.BILLING" />
|
||||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||||
@ -13,6 +14,7 @@
|
|||||||
<uses-permission android:name="android.gms.permission.ACTIVITY_RECOGNITION"/>
|
<uses-permission android:name="android.gms.permission.ACTIVITY_RECOGNITION"/>
|
||||||
<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" />
|
<uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" />
|
||||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
@ -24,24 +26,24 @@
|
|||||||
android:usesCleartextTraffic="true"
|
android:usesCleartextTraffic="true"
|
||||||
android:theme="@style/AppTheme"
|
android:theme="@style/AppTheme"
|
||||||
tools:ignore="LockedOrientationActivity">
|
tools:ignore="LockedOrientationActivity">
|
||||||
<activity android:name=".ui.activities.MainActivity" android:launchMode="singleInstance" android:theme="@style/AppTheme.Main" android:screenOrientation="portrait">
|
<activity android:name=".ui.activities.MainActivity" android:theme="@style/AppTheme.Main" android:screenOrientation="portrait">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".ui.activities.tabs.ChooseApplicationActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.ChooseApplicationActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.CustomFontActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.CustomFontActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.CustomLocationActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.CustomLocationActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.WeatherProviderActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.WeatherProviderActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.settings.SupportDevActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.settings.SupportDevActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.CustomDateActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.CustomDateActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.settings.IntegrationsActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.settings.IntegrationsActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.MusicPlayersFilterActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.MusicPlayersFilterActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.AppNotificationsFilterActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.AppNotificationsFilterActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.MediaInfoFormatActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.MediaInfoFormatActivity" android:screenOrientation="portrait" />
|
||||||
<activity android:name=".ui.activities.tabs.TimeZoneSelectorActivity" android:launchMode="singleInstance" android:screenOrientation="portrait" />
|
<activity android:name=".ui.activities.tabs.TimeZoneSelectorActivity" android:screenOrientation="portrait" />
|
||||||
|
|
||||||
<receiver android:name=".ui.widgets.MainWidget">
|
<receiver android:name=".ui.widgets.MainWidget">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
@ -31,22 +31,5 @@ class AWApplication : Application() {
|
|||||||
.deleteRealmIfMigrationNeeded()
|
.deleteRealmIfMigrationNeeded()
|
||||||
.build()
|
.build()
|
||||||
Realm.setDefaultConfiguration(config)
|
Realm.setDefaultConfiguration(config)
|
||||||
|
|
||||||
calibrateVersions()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun calibrateVersions() {
|
|
||||||
// 2.0 Tolerance
|
|
||||||
if (Preferences.clockTextSize > 50f) {
|
|
||||||
Preferences.clockTextSize = 32f
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Preferences.textMainSize > 36f) {
|
|
||||||
Preferences.textMainSize = 32f
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Preferences.textSecondSize > 28f) {
|
|
||||||
Preferences.textSecondSize = 24f
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -143,7 +143,6 @@ class BottomSheetColorPicker(
|
|||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
binding.loader.isVisible = false
|
binding.loader.isVisible = false
|
||||||
binding.listContainer.addView(listBinding.root)
|
binding.listContainer.addView(listBinding.root)
|
||||||
this@BottomSheetColorPicker.behavior.state = BottomSheetBehavior.STATE_EXPANDED
|
|
||||||
binding.listContainer.isVisible = true
|
binding.listContainer.isVisible = true
|
||||||
|
|
||||||
val idx = colors.toList().indexOf(getSelected?.invoke())
|
val idx = colors.toList().indexOf(getSelected?.invoke())
|
||||||
@ -152,6 +151,10 @@ class BottomSheetColorPicker(
|
|||||||
})
|
})
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,6 +108,10 @@ open class BottomSheetMenu<T>(context: Context, private val header: String? = nu
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,7 +86,6 @@ class BottomSheetPicker<T>(
|
|||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
binding.loader.isVisible = false
|
binding.loader.isVisible = false
|
||||||
binding.listContainer.addView(listBinding.root)
|
binding.listContainer.addView(listBinding.root)
|
||||||
this@BottomSheetPicker.behavior.state = BottomSheetBehavior.STATE_EXPANDED
|
|
||||||
binding.listContainer.isVisible = true
|
binding.listContainer.isVisible = true
|
||||||
|
|
||||||
val idx = items.toList().indexOfFirst { it.value == getSelected?.invoke() }
|
val idx = items.toList().indexOfFirst { it.value == getSelected?.invoke() }
|
||||||
@ -95,6 +94,10 @@ class BottomSheetPicker<T>(
|
|||||||
})
|
})
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,5 +61,9 @@ class BottomSheetWeatherProviderSettings(context: Context, callback: () -> Unit)
|
|||||||
}
|
}
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -26,5 +26,9 @@ class CustomNotesDialog(context: Context, callback: (() -> Unit)?) : BottomSheet
|
|||||||
binding.notes.requestFocus()
|
binding.notes.requestFocus()
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -51,6 +51,7 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
Constants.GlanceProviderId.NOTIFICATIONS -> context.getString(R.string.settings_show_notifications_title)
|
Constants.GlanceProviderId.NOTIFICATIONS -> context.getString(R.string.settings_show_notifications_title)
|
||||||
Constants.GlanceProviderId.GREETINGS -> context.getString(R.string.settings_show_greetings_title)
|
Constants.GlanceProviderId.GREETINGS -> context.getString(R.string.settings_show_greetings_title)
|
||||||
Constants.GlanceProviderId.EVENTS -> context.getString(R.string.settings_show_events_as_glance_provider_title)
|
Constants.GlanceProviderId.EVENTS -> context.getString(R.string.settings_show_events_as_glance_provider_title)
|
||||||
|
Constants.GlanceProviderId.WEATHER -> context.getString(R.string.settings_show_weather_as_glance_provider_title)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SUBTITLE*/
|
/* SUBTITLE*/
|
||||||
@ -63,6 +64,7 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
Constants.GlanceProviderId.NOTIFICATIONS -> context.getString(R.string.settings_show_notifications_subtitle)
|
Constants.GlanceProviderId.NOTIFICATIONS -> context.getString(R.string.settings_show_notifications_subtitle)
|
||||||
Constants.GlanceProviderId.GREETINGS -> context.getString(R.string.settings_show_greetings_subtitle)
|
Constants.GlanceProviderId.GREETINGS -> context.getString(R.string.settings_show_greetings_subtitle)
|
||||||
Constants.GlanceProviderId.EVENTS -> context.getString(R.string.settings_show_events_as_glance_provider_subtitle)
|
Constants.GlanceProviderId.EVENTS -> context.getString(R.string.settings_show_events_as_glance_provider_subtitle)
|
||||||
|
Constants.GlanceProviderId.WEATHER -> context.getString(R.string.settings_show_weather_as_glance_provider_subtitle)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* SONG */
|
/* SONG */
|
||||||
@ -140,6 +142,13 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
checkCalendarConfig()
|
checkCalendarConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* WEATHER */
|
||||||
|
if (provider == Constants.GlanceProviderId.WEATHER) {
|
||||||
|
binding.header.isVisible = false
|
||||||
|
binding.divider.isVisible = false
|
||||||
|
checkWeatherConfig()
|
||||||
|
}
|
||||||
|
|
||||||
/* TOGGLE */
|
/* TOGGLE */
|
||||||
binding.providerSwitch.setCheckedImmediatelyNoEvent(when (provider) {
|
binding.providerSwitch.setCheckedImmediatelyNoEvent(when (provider) {
|
||||||
Constants.GlanceProviderId.PLAYING_SONG -> Preferences.showMusic
|
Constants.GlanceProviderId.PLAYING_SONG -> Preferences.showMusic
|
||||||
@ -150,6 +159,7 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
Constants.GlanceProviderId.NOTIFICATIONS -> Preferences.showNotifications
|
Constants.GlanceProviderId.NOTIFICATIONS -> Preferences.showNotifications
|
||||||
Constants.GlanceProviderId.GREETINGS -> Preferences.showGreetings
|
Constants.GlanceProviderId.GREETINGS -> Preferences.showGreetings
|
||||||
Constants.GlanceProviderId.EVENTS -> Preferences.showEventsAsGlanceProvider
|
Constants.GlanceProviderId.EVENTS -> Preferences.showEventsAsGlanceProvider
|
||||||
|
Constants.GlanceProviderId.WEATHER -> Preferences.showWeatherAsGlanceProvider
|
||||||
})
|
})
|
||||||
|
|
||||||
var job: Job? = null
|
var job: Job? = null
|
||||||
@ -208,6 +218,9 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
Constants.GlanceProviderId.EVENTS -> {
|
Constants.GlanceProviderId.EVENTS -> {
|
||||||
Preferences.showEventsAsGlanceProvider = isChecked
|
Preferences.showEventsAsGlanceProvider = isChecked
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
Preferences.showWeatherAsGlanceProvider = isChecked
|
||||||
|
}
|
||||||
else -> {
|
else -> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -217,10 +230,16 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
}
|
}
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun checkNextAlarm() {
|
private fun checkNextAlarm() {
|
||||||
|
if (!Preferences.showNextAlarm)
|
||||||
|
AlarmHelper.clearTimeout(context)
|
||||||
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
val alarm = nextAlarmClock
|
val alarm = nextAlarmClock
|
||||||
if (alarm != null && alarm.showIntent != null) {
|
if (alarm != null && alarm.showIntent != null) {
|
||||||
@ -255,6 +274,19 @@ class GlanceSettingsDialog(val context: Activity, val provider: Constants.Glance
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun checkWeatherConfig() {
|
||||||
|
if (!Preferences.showWeather || (Preferences.weatherProviderError != "" && Preferences.weatherProviderError != "-") || Preferences.weatherProviderLocationError != "") {
|
||||||
|
binding.warningContainer.isVisible = true
|
||||||
|
binding.warningTitle.text = context.getString(R.string.settings_show_weather_as_glance_provider_error)
|
||||||
|
binding.warningContainer.setOnClickListener {
|
||||||
|
dismiss()
|
||||||
|
EventBus.getDefault().post(MainFragment.ChangeTabEvent(1))
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
binding.warningContainer.isVisible = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun checkNotificationPermission() {
|
private fun checkNotificationPermission() {
|
||||||
when {
|
when {
|
||||||
ActiveNotificationsHelper.checkNotificationAccess(context) -> {
|
ActiveNotificationsHelper.checkNotificationAccess(context) -> {
|
||||||
|
@ -50,6 +50,10 @@ class IconPackSelector(context: Context, private val header: String? = null) : B
|
|||||||
binding.menu.addView(itemBinding.root)
|
binding.menu.addView(itemBinding.root)
|
||||||
}
|
}
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -57,6 +57,10 @@ class MaterialBottomSheetDialog(
|
|||||||
}
|
}
|
||||||
|
|
||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
behavior.run {
|
||||||
|
skipCollapsed = true
|
||||||
|
state = com.google.android.material.bottomsheet.BottomSheetBehavior.STATE_EXPANDED
|
||||||
|
}
|
||||||
super.show()
|
super.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,7 +64,7 @@ class EventRepository(val context: Context) {
|
|||||||
else -> add(Calendar.HOUR, 6)
|
else -> add(Calendar.HOUR, 6)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val event = if (nextEvent != null && nextEvent.endDate > now && nextEvent.startDate < limit.timeInMillis) {
|
val event = if (nextEvent != null && nextEvent.endDate > now && nextEvent.startDate <= limit.timeInMillis) {
|
||||||
nextEvent
|
nextEvent
|
||||||
} else {
|
} else {
|
||||||
val events = getEvents()
|
val events = getEvents()
|
||||||
@ -105,8 +105,10 @@ class EventRepository(val context: Context) {
|
|||||||
} else {
|
} else {
|
||||||
resetNextEventData()
|
resetNextEventData()
|
||||||
}
|
}
|
||||||
UpdatesReceiver.setUpdates(context)
|
|
||||||
MainWidget.updateWidget(context)
|
MainWidget.updateWidget(context)
|
||||||
|
org.greenrobot.eventbus.EventBus.getDefault().post(
|
||||||
|
com.tommasoberlose.anotherwidget.ui.fragments.MainFragment.UpdateUiMessageEvent()
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun goToPreviousEvent() {
|
fun goToPreviousEvent() {
|
||||||
@ -121,8 +123,10 @@ class EventRepository(val context: Context) {
|
|||||||
} else {
|
} else {
|
||||||
resetNextEventData()
|
resetNextEventData()
|
||||||
}
|
}
|
||||||
UpdatesReceiver.setUpdates(context)
|
|
||||||
MainWidget.updateWidget(context)
|
MainWidget.updateWidget(context)
|
||||||
|
org.greenrobot.eventbus.EventBus.getDefault().post(
|
||||||
|
com.tommasoberlose.anotherwidget.ui.fragments.MainFragment.UpdateUiMessageEvent()
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getFutureEvents(): List<Event> {
|
fun getFutureEvents(): List<Event> {
|
||||||
|
@ -23,6 +23,13 @@ object Constants {
|
|||||||
LARGE(3)
|
LARGE(3)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum class Dimension(val rawValue: Float) {
|
||||||
|
NONE(0f),
|
||||||
|
SMALL(8f),
|
||||||
|
MEDIUM(16f),
|
||||||
|
LARGE(24f)
|
||||||
|
}
|
||||||
|
|
||||||
enum class GlanceProviderId(val id: String) {
|
enum class GlanceProviderId(val id: String) {
|
||||||
PLAYING_SONG("PLAYING_SONG"),
|
PLAYING_SONG("PLAYING_SONG"),
|
||||||
NEXT_CLOCK_ALARM("NEXT_CLOCK_ALARM"),
|
NEXT_CLOCK_ALARM("NEXT_CLOCK_ALARM"),
|
||||||
@ -31,7 +38,8 @@ object Constants {
|
|||||||
GOOGLE_FIT_STEPS("GOOGLE_FIT_STEPS"),
|
GOOGLE_FIT_STEPS("GOOGLE_FIT_STEPS"),
|
||||||
NOTIFICATIONS("NOTIFICATIONS"),
|
NOTIFICATIONS("NOTIFICATIONS"),
|
||||||
GREETINGS("GREETINGS"),
|
GREETINGS("GREETINGS"),
|
||||||
EVENTS("EVENTS");
|
EVENTS("EVENTS"),
|
||||||
|
WEATHER("WEATHER");
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private val map = GlanceProviderId.values().associateBy(GlanceProviderId::id)
|
private val map = GlanceProviderId.values().associateBy(GlanceProviderId::id)
|
||||||
|
@ -84,14 +84,18 @@ object Preferences : KotprefModel() {
|
|||||||
|
|
||||||
var weatherIconPack by intPref(default = Constants.WeatherIconPack.DEFAULT.rawValue)
|
var weatherIconPack by intPref(default = Constants.WeatherIconPack.DEFAULT.rawValue)
|
||||||
|
|
||||||
|
// UI
|
||||||
|
var widgetMargin by floatPref(default = Constants.Dimension.SMALL.rawValue)
|
||||||
|
var widgetPadding by floatPref(default = Constants.Dimension.SMALL.rawValue)
|
||||||
|
|
||||||
// Clock
|
// Clock
|
||||||
var altTimezoneLabel by stringPref(default = "")
|
var altTimezoneLabel by stringPref(default = "")
|
||||||
var altTimezoneId by stringPref(default = "")
|
var altTimezoneId by stringPref(default = "")
|
||||||
|
|
||||||
// Global
|
// Global
|
||||||
var textMainSize by floatPref(key = "PREF_TEXT_MAIN_SIZE", default = 26f)
|
var textMainSize by floatPref(key = "PREF_TEXT_MAIN_SIZE", default = 24f)
|
||||||
var textSecondSize by floatPref(key = "PREF_TEXT_SECOND_SIZE", default = 18f)
|
var textSecondSize by floatPref(key = "PREF_TEXT_SECOND_SIZE", default = 16f)
|
||||||
var clockTextSize by floatPref(key = "PREF_TEXT_CLOCK_SIZE", default = 90f)
|
var clockTextSize by floatPref(key = "PREF_TEXT_CLOCK_SIZE", default = 72f)
|
||||||
var clockBottomMargin by intPref(default = Constants.ClockBottomMargin.MEDIUM.rawValue)
|
var clockBottomMargin by intPref(default = Constants.ClockBottomMargin.MEDIUM.rawValue)
|
||||||
var secondRowTopMargin by intPref(default = Constants.SecondRowTopMargin.NONE.rawValue)
|
var secondRowTopMargin by intPref(default = Constants.SecondRowTopMargin.NONE.rawValue)
|
||||||
var showClock by booleanPref(key = "PREF_SHOW_CLOCK", default = false)
|
var showClock by booleanPref(key = "PREF_SHOW_CLOCK", default = false)
|
||||||
@ -149,6 +153,7 @@ object Preferences : KotprefModel() {
|
|||||||
var appNotificationsFilter by stringPref(default = "")
|
var appNotificationsFilter by stringPref(default = "")
|
||||||
|
|
||||||
var showEventsAsGlanceProvider by booleanPref(default = false)
|
var showEventsAsGlanceProvider by booleanPref(default = false)
|
||||||
|
var showWeatherAsGlanceProvider by booleanPref(default = false)
|
||||||
|
|
||||||
// Integrations
|
// Integrations
|
||||||
var installedIntegrations by intPref(default = 0)
|
var installedIntegrations by intPref(default = 0)
|
||||||
|
@ -44,7 +44,6 @@ object AlarmHelper {
|
|||||||
val intent = Intent(context, UpdatesReceiver::class.java).apply {
|
val intent = Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
action = Actions.ACTION_ALARM_UPDATE
|
action = Actions.ACTION_ALARM_UPDATE
|
||||||
}
|
}
|
||||||
cancel(PendingIntent.getBroadcast(context, ALARM_UPDATE_ID, intent, 0))
|
|
||||||
setExact(
|
setExact(
|
||||||
AlarmManager.RTC,
|
AlarmManager.RTC,
|
||||||
trigger,
|
trigger,
|
||||||
@ -58,5 +57,14 @@ object AlarmHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun clearTimeout(context: Context) {
|
||||||
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
|
val intent = Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
|
action = Actions.ACTION_ALARM_UPDATE
|
||||||
|
}
|
||||||
|
cancel(PendingIntent.getBroadcast(context, ALARM_UPDATE_ID, intent, 0))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private const val ALARM_UPDATE_ID = 24953
|
private const val ALARM_UPDATE_ID = 24953
|
||||||
}
|
}
|
@ -44,8 +44,8 @@ object BitmapHelper {
|
|||||||
FirebaseCrashlytics.getInstance().setCustomKey("HEIGHT SPEC", measuredHeight)
|
FirebaseCrashlytics.getInstance().setCustomKey("HEIGHT SPEC", measuredHeight)
|
||||||
FirebaseCrashlytics.getInstance().setCustomKey("VIEW measuredWidth", view.measuredWidth)
|
FirebaseCrashlytics.getInstance().setCustomKey("VIEW measuredWidth", view.measuredWidth)
|
||||||
FirebaseCrashlytics.getInstance().setCustomKey("VIEW measuredHeight", view.measuredHeight)
|
FirebaseCrashlytics.getInstance().setCustomKey("VIEW measuredHeight", view.measuredHeight)
|
||||||
FirebaseCrashlytics.getInstance().setCustomKey("WIDGET final width", measuredWidth)
|
FirebaseCrashlytics.getInstance().setCustomKey("WIDGET final width", widgetWidth)
|
||||||
FirebaseCrashlytics.getInstance().setCustomKey("WIDGET final height", view.measuredHeight)
|
FirebaseCrashlytics.getInstance().setCustomKey("WIDGET final height", widgetHeight)
|
||||||
}
|
}
|
||||||
|
|
||||||
return try {
|
return try {
|
||||||
@ -58,7 +58,7 @@ object BitmapHelper {
|
|||||||
//Bind a canvas to it
|
//Bind a canvas to it
|
||||||
val canvas = Canvas(btm)
|
val canvas = Canvas(btm)
|
||||||
// draw the view on the canvas
|
// draw the view on the canvas
|
||||||
view.layout(0, 0, measuredWidth, measuredHeight)
|
view.layout(0, 0, widgetWidth, widgetHeight)
|
||||||
view.draw(canvas)
|
view.draw(canvas)
|
||||||
//return the bitmap
|
//return the bitmap
|
||||||
}
|
}
|
||||||
|
@ -90,6 +90,12 @@ object GlanceProviderHelper {
|
|||||||
R.drawable.round_event_note_24
|
R.drawable.round_event_note_24
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
GlanceProvider(providerId.id,
|
||||||
|
context.getString(R.string.settings_show_weather_as_glance_provider_title),
|
||||||
|
R.drawable.round_brightness_5_24
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,10 +114,11 @@ object GlanceProviderHelper {
|
|||||||
(MediaPlayerHelper.isSomeonePlaying(context)) ||
|
(MediaPlayerHelper.isSomeonePlaying(context)) ||
|
||||||
(Preferences.showBatteryCharging && Preferences.isCharging || Preferences.isBatteryLevelLow) ||
|
(Preferences.showBatteryCharging && Preferences.isCharging || Preferences.isBatteryLevelLow) ||
|
||||||
(Preferences.customNotes.isNotEmpty()) ||
|
(Preferences.customNotes.isNotEmpty()) ||
|
||||||
|
(Preferences.showWeatherAsGlanceProvider && Preferences.showWeather && Preferences.weatherIcon != "") ||
|
||||||
(Preferences.showDailySteps && Preferences.googleFitSteps > 0) ||
|
(Preferences.showDailySteps && Preferences.googleFitSteps > 0) ||
|
||||||
(Preferences.showGreetings && GreetingsHelper.showGreetings()) ||
|
(Preferences.showGreetings && GreetingsHelper.showGreetings()) ||
|
||||||
(Preferences.showEventsAsGlanceProvider && Preferences.showEvents && context.checkGrantedPermission(
|
(Preferences.showEventsAsGlanceProvider && Preferences.showEvents && context.checkGrantedPermission(
|
||||||
Manifest.permission.READ_CALENDAR) && eventRepository.getNextEvent() != null)
|
Manifest.permission.READ_CALENDAR) && eventRepository.getNextEvent() != null)
|
||||||
)
|
)
|
||||||
eventRepository.close()
|
eventRepository.close()
|
||||||
return showGlance
|
return showGlance
|
||||||
|
@ -73,6 +73,9 @@ object ImageHelper {
|
|||||||
|
|
||||||
allocationIn.destroy()
|
allocationIn.destroy()
|
||||||
allocationOut.destroy()
|
allocationOut.destroy()
|
||||||
|
colorMatrixScript.destroy()
|
||||||
|
blurScript.destroy()
|
||||||
|
//rs.destroy()
|
||||||
|
|
||||||
return bitmap
|
return bitmap
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package com.tommasoberlose.anotherwidget.helpers
|
package com.tommasoberlose.anotherwidget.helpers
|
||||||
|
|
||||||
|
import android.app.PendingIntent
|
||||||
import android.appwidget.AppWidgetManager
|
import android.appwidget.AppWidgetManager
|
||||||
import android.content.ComponentName
|
import android.content.ComponentName
|
||||||
import android.content.ContentUris
|
import android.content.ContentUris
|
||||||
@ -27,6 +28,13 @@ object IntentHelper {
|
|||||||
const val DO_NOTHING_OPTION = "DO_NOTHING"
|
const val DO_NOTHING_OPTION = "DO_NOTHING"
|
||||||
const val REFRESH_WIDGET_OPTION = "REFRESH_WIDGET"
|
const val REFRESH_WIDGET_OPTION = "REFRESH_WIDGET"
|
||||||
|
|
||||||
|
fun getPendingIntent(context: Context, requestCode: Int, intent: Intent, flags: Int): PendingIntent {
|
||||||
|
return if (intent.flags and Intent.FLAG_ACTIVITY_NEW_TASK == Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
|
PendingIntent.getActivity(context, requestCode, intent, flags)
|
||||||
|
else
|
||||||
|
PendingIntent.getBroadcast(context, requestCode, intent, 0)
|
||||||
|
}
|
||||||
|
|
||||||
fun getWidgetUpdateIntent(context: Context): Intent {
|
fun getWidgetUpdateIntent(context: Context): Intent {
|
||||||
val widgetManager = AppWidgetManager.getInstance(context)
|
val widgetManager = AppWidgetManager.getInstance(context)
|
||||||
val widgetComponent = ComponentName(context, MainWidget::class.java)
|
val widgetComponent = ComponentName(context, MainWidget::class.java)
|
||||||
@ -40,21 +48,19 @@ object IntentHelper {
|
|||||||
private fun getWidgetRefreshIntent(context: Context): Intent {
|
private fun getWidgetRefreshIntent(context: Context): Intent {
|
||||||
return Intent(context, UpdatesReceiver::class.java).apply {
|
return Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
action = Actions.ACTION_REFRESH
|
action = Actions.ACTION_REFRESH
|
||||||
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getGoogleMapsIntentFromAddress(context: Context, address: String): Intent {
|
fun getGoogleMapsIntentFromAddress(context: Context, address: String): Intent {
|
||||||
val gmmIntentUri: Uri = Uri.parse("geo:0,0?q=$address")
|
val gmmIntentUri: Uri = Uri.parse("geo:0,0?q=${Uri.encode(address)}")
|
||||||
val mapIntent = Intent(Intent.ACTION_VIEW, gmmIntentUri)
|
val mapIntent = Intent(Intent.ACTION_VIEW, gmmIntentUri)
|
||||||
mapIntent.`package` = "com.google.android.apps.maps"
|
//mapIntent.`package` = "com.google.android.apps.maps"
|
||||||
|
|
||||||
return if (mapIntent.resolveActivity(context.packageManager) != null) {
|
return if (mapIntent.resolveActivity(context.packageManager) != null) {
|
||||||
mapIntent
|
mapIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
} else {
|
} else {
|
||||||
val map = "http://maps.google.co.in/maps?q=$address"
|
val map = "https://www.google.com/maps/search/?api=1&query=${Uri.encode(address)}"
|
||||||
val i = Intent(Intent.ACTION_VIEW, Uri.parse(map));
|
Intent(Intent.ACTION_VIEW, Uri.parse(map)).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
i
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,7 +68,6 @@ object IntentHelper {
|
|||||||
return when (Preferences.weatherAppPackage) {
|
return when (Preferences.weatherAppPackage) {
|
||||||
DEFAULT_OPTION -> {
|
DEFAULT_OPTION -> {
|
||||||
Intent(Intent.ACTION_VIEW).apply {
|
Intent(Intent.ACTION_VIEW).apply {
|
||||||
addCategory(Intent.CATEGORY_DEFAULT)
|
|
||||||
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
data = Uri.parse("dynact://velour/weather/ProxyActivity")
|
data = Uri.parse("dynact://velour/weather/ProxyActivity")
|
||||||
component = ComponentName("com.google.android.googlequicksearchbox", "com.google.android.apps.gsa.velour.DynamicActivityTrampoline")
|
component = ComponentName("com.google.android.googlequicksearchbox", "com.google.android.apps.gsa.velour.DynamicActivityTrampoline")
|
||||||
@ -89,15 +94,16 @@ object IntentHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getCalendarIntent(context: Context): Intent {
|
fun getCalendarIntent(context: Context, time: Long? = null): Intent {
|
||||||
val calendarUri = CalendarContract.CONTENT_URI
|
val calendarUri = CalendarContract.CONTENT_URI
|
||||||
.buildUpon()
|
.buildUpon()
|
||||||
.appendPath("time")
|
.appendPath("time")
|
||||||
.appendPath(Calendar.getInstance().timeInMillis.toString())
|
.appendPath((time ?: Calendar.getInstance().timeInMillis).toString())
|
||||||
.build()
|
.build()
|
||||||
return when (Preferences.calendarAppPackage) {
|
return when (Preferences.calendarAppPackage) {
|
||||||
DEFAULT_OPTION -> {
|
DEFAULT_OPTION -> {
|
||||||
Intent(Intent.ACTION_VIEW).apply {
|
Intent(Intent.ACTION_VIEW).apply {
|
||||||
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
data = calendarUri
|
data = calendarUri
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -111,6 +117,8 @@ object IntentHelper {
|
|||||||
val pm: PackageManager = context.packageManager
|
val pm: PackageManager = context.packageManager
|
||||||
try {
|
try {
|
||||||
pm.getLaunchIntentForPackage(Preferences.calendarAppPackage)!!.apply {
|
pm.getLaunchIntentForPackage(Preferences.calendarAppPackage)!!.apply {
|
||||||
|
addCategory(Intent.CATEGORY_LAUNCHER)
|
||||||
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
action = Intent.ACTION_VIEW
|
action = Intent.ACTION_VIEW
|
||||||
data = calendarUri
|
data = calendarUri
|
||||||
}
|
}
|
||||||
@ -177,7 +185,7 @@ object IntentHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
false -> {
|
false -> {
|
||||||
getCalendarIntent(context)
|
getCalendarIntent(context, e.startDate)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -209,7 +217,7 @@ object IntentHelper {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun getBatteryIntent(): Intent {
|
fun getBatteryIntent(): Intent {
|
||||||
return Intent(Intent.ACTION_POWER_USAGE_SUMMARY)
|
return Intent(Intent.ACTION_POWER_USAGE_SUMMARY).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getMusicIntent(context: Context): Intent {
|
fun getMusicIntent(context: Context): Intent {
|
||||||
@ -222,6 +230,7 @@ object IntentHelper {
|
|||||||
try {
|
try {
|
||||||
pm.getLaunchIntentForPackage(Preferences.mediaPlayerPackage)!!.apply {
|
pm.getLaunchIntentForPackage(Preferences.mediaPlayerPackage)!!.apply {
|
||||||
addCategory(Intent.CATEGORY_LAUNCHER)
|
addCategory(Intent.CATEGORY_LAUNCHER)
|
||||||
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Intent()
|
Intent()
|
||||||
@ -235,6 +244,7 @@ object IntentHelper {
|
|||||||
return try {
|
return try {
|
||||||
pm.getLaunchIntentForPackage("com.google.android.apps.fitness")!!.apply {
|
pm.getLaunchIntentForPackage("com.google.android.apps.fitness")!!.apply {
|
||||||
addCategory(Intent.CATEGORY_LAUNCHER)
|
addCategory(Intent.CATEGORY_LAUNCHER)
|
||||||
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Intent()
|
Intent()
|
||||||
@ -246,6 +256,7 @@ object IntentHelper {
|
|||||||
return try {
|
return try {
|
||||||
pm.getLaunchIntentForPackage(Preferences.lastNotificationPackage)!!.apply {
|
pm.getLaunchIntentForPackage(Preferences.lastNotificationPackage)!!.apply {
|
||||||
addCategory(Intent.CATEGORY_LAUNCHER)
|
addCategory(Intent.CATEGORY_LAUNCHER)
|
||||||
|
flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Intent()
|
Intent()
|
||||||
|
@ -88,19 +88,17 @@ object SettingsStringHelper {
|
|||||||
fun getDifferenceText(context: Context, now: Long, start: Long): String {
|
fun getDifferenceText(context: Context, now: Long, start: Long): String {
|
||||||
val nowDate = DateTime(now)
|
val nowDate = DateTime(now)
|
||||||
val eventDate = DateTime(start)
|
val eventDate = DateTime(start)
|
||||||
|
val difference = start - now
|
||||||
var difference = start - now
|
|
||||||
difference += 60 * 1000 - (difference % (60 * 1000))
|
|
||||||
|
|
||||||
when {
|
when {
|
||||||
difference <= 0 -> {
|
difference <= 0 -> {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.HIGH.rawValue && TimeUnit.MILLISECONDS.toMinutes(difference) > 5 -> {
|
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.HIGH.rawValue && TimeUnit.MILLISECONDS.toMinutes(difference) >= 5 -> {
|
||||||
return DateUtils.getRelativeTimeSpanString(start, start - 1000 * 60 * (TimeUnit.MILLISECONDS.toMinutes(difference) - 1 - (TimeUnit.MILLISECONDS.toMinutes(difference) - 1) % 5), DateUtils.MINUTE_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString()
|
return DateUtils.getRelativeTimeSpanString(start, start - 1000 * 60 * (TimeUnit.MILLISECONDS.toMinutes(difference) - TimeUnit.MILLISECONDS.toMinutes(difference) % 5), DateUtils.MINUTE_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString()
|
||||||
}
|
}
|
||||||
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.DEFAULT.rawValue && TimeUnit.MILLISECONDS.toMinutes(difference) > 5 -> {
|
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.DEFAULT.rawValue && TimeUnit.MILLISECONDS.toMinutes(difference) >= 15 -> {
|
||||||
return DateUtils.getRelativeTimeSpanString(start, start - 1000 * 60 * (TimeUnit.MILLISECONDS.toMinutes(difference) - 1 - (TimeUnit.MILLISECONDS.toMinutes(difference) - 1) % 15), DateUtils.MINUTE_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString()
|
return DateUtils.getRelativeTimeSpanString(start, start - 1000 * 60 * (TimeUnit.MILLISECONDS.toMinutes(difference) - TimeUnit.MILLISECONDS.toMinutes(difference) % 15), DateUtils.MINUTE_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString()
|
||||||
}
|
}
|
||||||
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.LOW.rawValue -> {
|
TimeUnit.MILLISECONDS.toHours(difference) < 1 && Preferences.widgetUpdateFrequency == Constants.WidgetUpdateFrequency.LOW.rawValue -> {
|
||||||
return context.getString(R.string.soon)
|
return context.getString(R.string.soon)
|
||||||
@ -109,22 +107,7 @@ object SettingsStringHelper {
|
|||||||
return context.getString(R.string.now)
|
return context.getString(R.string.now)
|
||||||
}
|
}
|
||||||
TimeUnit.MILLISECONDS.toHours(difference) < 12 -> {
|
TimeUnit.MILLISECONDS.toHours(difference) < 12 -> {
|
||||||
val minutes = TimeUnit.MILLISECONDS.toMinutes(difference) - 60 * TimeUnit.MILLISECONDS.toHours(difference)
|
return DateUtils.getRelativeTimeSpanString(start, now, DateUtils.HOUR_IN_MILLIS, DateUtils.FORMAT_ABBREV_RELATIVE).toString()
|
||||||
return if (minutes < 1 || minutes > 30) {
|
|
||||||
DateUtils.getRelativeTimeSpanString(
|
|
||||||
start,
|
|
||||||
now - 1000 * 60 * 40,
|
|
||||||
DateUtils.HOUR_IN_MILLIS,
|
|
||||||
DateUtils.FORMAT_ABBREV_RELATIVE
|
|
||||||
).toString()
|
|
||||||
} else {
|
|
||||||
DateUtils.getRelativeTimeSpanString(
|
|
||||||
start,
|
|
||||||
now,
|
|
||||||
DateUtils.HOUR_IN_MILLIS,
|
|
||||||
DateUtils.FORMAT_ABBREV_RELATIVE
|
|
||||||
).toString()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
eventDate.dayOfYear == nowDate.plusDays(1).dayOfYear -> {
|
eventDate.dayOfYear == nowDate.plusDays(1).dayOfYear -> {
|
||||||
return String.format("%s", context.getString(R.string.tomorrow))
|
return String.format("%s", context.getString(R.string.tomorrow))
|
||||||
@ -143,9 +126,6 @@ object SettingsStringHelper {
|
|||||||
val nowDate = DateTime(now)
|
val nowDate = DateTime(now)
|
||||||
val eventDate = DateTime(start)
|
val eventDate = DateTime(start)
|
||||||
|
|
||||||
var difference = start - now
|
|
||||||
difference += 60 * 1000 - (difference % (60 * 1000))
|
|
||||||
|
|
||||||
return when (eventDate.dayOfYear) {
|
return when (eventDate.dayOfYear) {
|
||||||
nowDate.dayOfYear -> {
|
nowDate.dayOfYear -> {
|
||||||
""
|
""
|
||||||
|
@ -21,11 +21,20 @@ object WeatherHelper {
|
|||||||
|
|
||||||
suspend fun updateWeather(context: Context) {
|
suspend fun updateWeather(context: Context) {
|
||||||
Kotpref.init(context)
|
Kotpref.init(context)
|
||||||
val networkApi = WeatherNetworkApi(context)
|
|
||||||
if (Preferences.customLocationAdd != "") {
|
if (Preferences.customLocationAdd != "") {
|
||||||
networkApi.updateWeather()
|
WeatherNetworkApi(context).updateWeather()
|
||||||
} else if (context.checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION)) {
|
} else if (context.checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION) &&
|
||||||
|
(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.R ||
|
||||||
|
context.checkGrantedPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION))
|
||||||
|
) {
|
||||||
LocationService.requestNewLocation(context)
|
LocationService.requestNewLocation(context)
|
||||||
|
} else {
|
||||||
|
Preferences.weatherProviderLocationError = context.getString(R.string.weather_provider_error_missing_location)
|
||||||
|
Preferences.weatherProviderError = ""
|
||||||
|
removeWeather(context)
|
||||||
|
org.greenrobot.eventbus.EventBus.getDefault().post(
|
||||||
|
com.tommasoberlose.anotherwidget.ui.fragments.MainFragment.UpdateUiMessageEvent()
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -313,6 +322,23 @@ object WeatherHelper {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun getWeatherLabel(context: Context, icon: String): String {
|
||||||
|
return when (icon) {
|
||||||
|
"01d", "01n" -> context.getString(R.string.weather_label_clear)
|
||||||
|
"02d", "02n" -> context.getString(R.string.weather_label_partly_cloudy)
|
||||||
|
"03d", "03n" -> context.getString(R.string.weather_label_mostly_cloudy)
|
||||||
|
"04d", "04n" -> context.getString(R.string.weather_label_cloudy_weather)
|
||||||
|
"09d", "09n" -> context.getString(R.string.weather_label_storm_weather)
|
||||||
|
"10d", "10n" -> context.getString(R.string.weather_label_rainy)
|
||||||
|
"11d", "11n" -> context.getString(R.string.weather_label_thunder)
|
||||||
|
"13d", "13n" -> context.getString(R.string.weather_label_snow)
|
||||||
|
"50d", "50n", "82d", "82n" -> context.getString(R.string.weather_label_haze)
|
||||||
|
"80d", "80n" -> context.getString(R.string.weather_label_windy)
|
||||||
|
"81d", "81n" -> context.getString(R.string.weather_label_rain_snow)
|
||||||
|
else -> context.getString(R.string.weather_label_unknown)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fun getWeatherGovIcon(iconString: String, isDaytime: Boolean): String = when {
|
fun getWeatherGovIcon(iconString: String, isDaytime: Boolean): String = when {
|
||||||
iconString.contains("skc") -> "01"
|
iconString.contains("skc") -> "01"
|
||||||
iconString.contains("few") -> "02"
|
iconString.contains("few") -> "02"
|
||||||
|
@ -25,8 +25,15 @@ object WidgetHelper {
|
|||||||
) {
|
) {
|
||||||
|
|
||||||
fun getWidgetsSize(widgetId: Int): Pair<Int, Int> {
|
fun getWidgetsSize(widgetId: Int): Pair<Int, Int> {
|
||||||
val width = getWidgetWidth(widgetId)
|
val portrait = context.resources.configuration.orientation == ORIENTATION_PORTRAIT
|
||||||
val height = getWidgetHeight(widgetId)
|
val width = getWidgetSizeInDp(
|
||||||
|
widgetId,
|
||||||
|
if (portrait) AppWidgetManager.OPTION_APPWIDGET_MIN_WIDTH else AppWidgetManager.OPTION_APPWIDGET_MAX_WIDTH
|
||||||
|
)
|
||||||
|
val height = getWidgetSizeInDp(
|
||||||
|
widgetId,
|
||||||
|
if (portrait) AppWidgetManager.OPTION_APPWIDGET_MAX_HEIGHT else AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT
|
||||||
|
)
|
||||||
val widthInPx = context.dip(width)
|
val widthInPx = context.dip(width)
|
||||||
val heightInPx = context.dip(height)
|
val heightInPx = context.dip(height)
|
||||||
FirebaseCrashlytics.getInstance().setCustomKey("widthInPx", widthInPx)
|
FirebaseCrashlytics.getInstance().setCustomKey("widthInPx", widthInPx)
|
||||||
@ -63,21 +70,23 @@ object WidgetHelper {
|
|||||||
R.array.com_google_android_gms_fonts_certs
|
R.array.com_google_android_gms_fonts_certs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
val handlerThread = HandlerThread("generateView")
|
||||||
val callback = object : FontsContractCompat.FontRequestCallback() {
|
val callback = object : FontsContractCompat.FontRequestCallback() {
|
||||||
override fun onTypefaceRetrieved(typeface: Typeface) {
|
override fun onTypefaceRetrieved(typeface: Typeface) {
|
||||||
|
handlerThread.quit()
|
||||||
function.invoke(typeface)
|
function.invoke(typeface)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTypefaceRequestFailed(reason: Int) {
|
override fun onTypefaceRequestFailed(reason: Int) {
|
||||||
|
handlerThread.quit()
|
||||||
function.invoke(null)
|
function.invoke(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val handlerThread = HandlerThread("generateView")
|
|
||||||
handlerThread.start()
|
handlerThread.start()
|
||||||
if (Looper.myLooper() == null) {
|
//if (Looper.myLooper() == null) {
|
||||||
Looper.prepare()
|
// Looper.prepare()
|
||||||
}
|
//}
|
||||||
|
|
||||||
Handler(handlerThread.looper).run {
|
Handler(handlerThread.looper).run {
|
||||||
FontsContractCompat.requestFont(context, request, callback, this)
|
FontsContractCompat.requestFont(context, request, callback, this)
|
||||||
|
@ -42,6 +42,13 @@ class WeatherNetworkApi(val context: Context) {
|
|||||||
Constants.WeatherProvider.YR -> useYrProvider(context)
|
Constants.WeatherProvider.YR -> useYrProvider(context)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (!Preferences.showWeather)
|
||||||
|
Preferences.weatherProviderError = context.getString(R.string.show_weather_not_visible)
|
||||||
|
else {
|
||||||
|
Preferences.weatherProviderLocationError = context.getString(R.string.weather_provider_error_missing_location)
|
||||||
|
Preferences.weatherProviderError = ""
|
||||||
|
}
|
||||||
|
|
||||||
WeatherHelper.removeWeather(
|
WeatherHelper.removeWeather(
|
||||||
context
|
context
|
||||||
)
|
)
|
||||||
|
@ -13,8 +13,7 @@ class NewCalendarEventReceiver : BroadcastReceiver() {
|
|||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
val eventRepository = EventRepository(context)
|
val eventRepository = EventRepository(context)
|
||||||
when (intent.action) {
|
when (intent.action) {
|
||||||
Intent.ACTION_PROVIDER_CHANGED,
|
Intent.ACTION_PROVIDER_CHANGED -> {
|
||||||
Intent.ACTION_TIME_CHANGED -> {
|
|
||||||
CalendarHelper.updateEventList(context)
|
CalendarHelper.updateEventList(context)
|
||||||
}
|
}
|
||||||
Actions.ACTION_GO_TO_NEXT_EVENT -> {
|
Actions.ACTION_GO_TO_NEXT_EVENT -> {
|
||||||
|
@ -38,6 +38,7 @@ class UpdatesReceiver : BroadcastReceiver() {
|
|||||||
"com.sec.android.widgetapp.APPWIDGET_RESIZE",
|
"com.sec.android.widgetapp.APPWIDGET_RESIZE",
|
||||||
AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED,
|
AlarmManager.ACTION_NEXT_ALARM_CLOCK_CHANGED,
|
||||||
Actions.ACTION_ALARM_UPDATE,
|
Actions.ACTION_ALARM_UPDATE,
|
||||||
|
Actions.ACTION_UPDATE_GREETINGS,
|
||||||
Actions.ACTION_TIME_UPDATE -> {
|
Actions.ACTION_TIME_UPDATE -> {
|
||||||
MainWidget.updateWidget(context)
|
MainWidget.updateWidget(context)
|
||||||
if (intent.hasExtra(EVENT_ID)) {
|
if (intent.hasExtra(EVENT_ID)) {
|
||||||
@ -49,9 +50,6 @@ class UpdatesReceiver : BroadcastReceiver() {
|
|||||||
ActiveNotificationsHelper.clearLastNotification(context)
|
ActiveNotificationsHelper.clearLastNotification(context)
|
||||||
MainWidget.updateWidget(context)
|
MainWidget.updateWidget(context)
|
||||||
}
|
}
|
||||||
Actions.ACTION_UPDATE_GREETINGS -> {
|
|
||||||
MainWidget.updateWidget(context)
|
|
||||||
}
|
|
||||||
|
|
||||||
Actions.ACTION_REFRESH -> {
|
Actions.ACTION_REFRESH -> {
|
||||||
GlobalScope.launch(Dispatchers.IO) {
|
GlobalScope.launch(Dispatchers.IO) {
|
||||||
@ -67,9 +65,31 @@ class UpdatesReceiver : BroadcastReceiver() {
|
|||||||
const val EVENT_ID = "EVENT_ID"
|
const val EVENT_ID = "EVENT_ID"
|
||||||
|
|
||||||
fun setUpdates(context: Context, eventId: Long? = null) {
|
fun setUpdates(context: Context, eventId: Long? = null) {
|
||||||
|
if (!Preferences.showEvents)
|
||||||
|
return
|
||||||
val eventRepository = EventRepository(context)
|
val eventRepository = EventRepository(context)
|
||||||
if (eventId == null) {
|
if (eventId == null) {
|
||||||
removeUpdates(context)
|
// schedule ACTION_CALENDAR_UPDATE at midnight (ACTION_DATE_CHANGED no longer works)
|
||||||
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
|
setExact(
|
||||||
|
AlarmManager.RTC,
|
||||||
|
Calendar.getInstance().apply {
|
||||||
|
set(Calendar.MILLISECOND, 0)
|
||||||
|
set(Calendar.SECOND, 0)
|
||||||
|
set(Calendar.MINUTE, 0)
|
||||||
|
set(Calendar.HOUR_OF_DAY, 0)
|
||||||
|
add(Calendar.DATE, 1)
|
||||||
|
}.timeInMillis,
|
||||||
|
PendingIntent.getBroadcast(
|
||||||
|
context,
|
||||||
|
0,
|
||||||
|
Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
|
action = Actions.ACTION_CALENDAR_UPDATE
|
||||||
|
},
|
||||||
|
0
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
eventRepository.getFutureEvents().forEach { event ->
|
eventRepository.getFutureEvents().forEach { event ->
|
||||||
setEventUpdate(context, event)
|
setEventUpdate(context, event)
|
||||||
@ -84,109 +104,90 @@ class UpdatesReceiver : BroadcastReceiver() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setEventUpdate(context: Context, event: Event) {
|
private fun setEventUpdate(context: Context, event: Event) {
|
||||||
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
val now = Calendar.getInstance().apply {
|
||||||
val now = Calendar.getInstance().apply {
|
set(Calendar.SECOND, 0)
|
||||||
set(Calendar.SECOND, 0)
|
set(Calendar.MILLISECOND, 0)
|
||||||
set(Calendar.MILLISECOND, 0)
|
}
|
||||||
}
|
val diff = Period(now.timeInMillis, event.startDate, org.joda.time.PeriodType.time())
|
||||||
val diff = Period(now.timeInMillis, event.startDate)
|
val limit = when (Preferences.showUntil) {
|
||||||
val limit = when (Preferences.showUntil) {
|
0 -> 1000 * 60 * 60 * 3
|
||||||
0 -> 1000 * 60 * 60 * 3
|
1 -> 1000 * 60 * 60 * 6
|
||||||
1 -> 1000 * 60 * 60 * 6
|
2 -> 1000 * 60 * 60 * 12
|
||||||
2 -> 1000 * 60 * 60 * 12
|
3 -> 1000 * 60 * 60 * 24
|
||||||
3 -> 1000 * 60 * 60 * 24
|
4 -> 1000 * 60 * 60 * 24 * 3
|
||||||
4 -> 1000 * 60 * 60 * 24 * 3
|
5 -> 1000 * 60 * 60 * 24 * 7
|
||||||
5 -> 1000 * 60 * 60 * 24 * 7
|
6 -> 1000 * 60 * 30
|
||||||
6 -> 1000 * 60 * 30
|
7 -> 1000 * 60 * 60
|
||||||
7 -> 1000 * 60 * 60
|
else -> 1000 * 60 * 60 * 6
|
||||||
else -> 1000 * 60 * 60 * 6
|
}
|
||||||
}
|
val fireTime = when {
|
||||||
if (event.startDate <= limit) {
|
event.startDate <= now.timeInMillis
|
||||||
if (event.startDate > now.timeInMillis) {
|
-> event.endDate
|
||||||
// Update the widget every hour till the event
|
event.startDate > now.timeInMillis + limit
|
||||||
if (diff.hours == 0) {
|
-> event.startDate - limit
|
||||||
var minutes = 0
|
!Preferences.showDiffTime
|
||||||
when (Preferences.widgetUpdateFrequency) {
|
-> return
|
||||||
Constants.WidgetUpdateFrequency.DEFAULT.rawValue -> {
|
event.allDay
|
||||||
minutes = when {
|
-> event.startDate
|
||||||
diff.minutes > 50 -> 50
|
diff.hours > 12
|
||||||
diff.minutes > 30 -> 30
|
-> event.startDate - 12 * 1000 * 60 * 60 + 1000 * 60
|
||||||
diff.minutes > 15 -> 15
|
diff.hours > 0
|
||||||
else -> 0
|
-> event.startDate - diff.hours * 1000 * 60 * 60 + 1000 * 60
|
||||||
}
|
else
|
||||||
}
|
-> event.startDate - 1000 * 60 * when (Preferences.widgetUpdateFrequency) {
|
||||||
Constants.WidgetUpdateFrequency.HIGH.rawValue -> {
|
Constants.WidgetUpdateFrequency.DEFAULT.rawValue -> {
|
||||||
minutes = diff.minutes - (diff.minutes % 5)
|
when {
|
||||||
}
|
diff.minutes >= 45 -> 44
|
||||||
|
diff.minutes >= 30 -> 29
|
||||||
|
diff.minutes >= 15 -> 14
|
||||||
|
else -> 0
|
||||||
}
|
}
|
||||||
setExact(
|
|
||||||
AlarmManager.RTC,
|
|
||||||
if (event.startDate - minutes * 1000 * 60 > (now.timeInMillis + 120 * 1000)) event.startDate - 60 * 1000 * minutes else now.timeInMillis + 120000,
|
|
||||||
PendingIntent.getBroadcast(
|
|
||||||
context,
|
|
||||||
event.eventID.toInt(),
|
|
||||||
Intent(context, UpdatesReceiver::class.java).apply {
|
|
||||||
action = Actions.ACTION_TIME_UPDATE
|
|
||||||
putExtra(EVENT_ID, event.eventID)
|
|
||||||
},
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
setExact(
|
|
||||||
AlarmManager.RTC,
|
|
||||||
event.startDate - diff.hours * 1000 * 60 * 60 + if (diff.minutes > 30) (-30) else (+30),
|
|
||||||
PendingIntent.getBroadcast(
|
|
||||||
context,
|
|
||||||
event.eventID.toInt(),
|
|
||||||
Intent(context, UpdatesReceiver::class.java).apply {
|
|
||||||
action = Actions.ACTION_TIME_UPDATE
|
|
||||||
putExtra(EVENT_ID, event.eventID)
|
|
||||||
},
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
} else {
|
Constants.WidgetUpdateFrequency.HIGH.rawValue -> {
|
||||||
// Update the widget one second after the event is finished
|
when {
|
||||||
val fireTime =
|
diff.minutes >= 5 -> diff.minutes - diff.minutes % 5 - 1
|
||||||
if (event.endDate > now.timeInMillis + 120 * 1000) event.endDate else now.timeInMillis + 120000
|
else -> 0
|
||||||
setExact(
|
}
|
||||||
AlarmManager.RTC,
|
}
|
||||||
fireTime,
|
else -> 0
|
||||||
PendingIntent.getBroadcast(
|
|
||||||
context,
|
|
||||||
event.eventID.toInt(),
|
|
||||||
Intent(context, UpdatesReceiver::class.java).apply {
|
|
||||||
action = Actions.ACTION_TIME_UPDATE
|
|
||||||
},
|
|
||||||
0
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
} else {
|
}
|
||||||
setExact(
|
// no need to schedule updates after the next ACTION_CALENDAR_UPDATE
|
||||||
AlarmManager.RTC,
|
if (Calendar.getInstance().apply {
|
||||||
if (event.startDate - limit > now.timeInMillis + 120 * 1000) event.startDate - limit else now.timeInMillis + 120000,
|
set(Calendar.MILLISECOND, 0)
|
||||||
PendingIntent.getBroadcast(
|
set(Calendar.SECOND, 0)
|
||||||
context,
|
set(Calendar.MINUTE, 0)
|
||||||
event.eventID.toInt(),
|
set(Calendar.HOUR_OF_DAY, 0)
|
||||||
Intent(context, UpdatesReceiver::class.java).apply {
|
add(Calendar.DATE, 1)
|
||||||
action = Actions.ACTION_TIME_UPDATE
|
}.timeInMillis <= fireTime) return
|
||||||
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
|
setExact(
|
||||||
|
AlarmManager.RTC,
|
||||||
|
fireTime.coerceAtLeast(now.timeInMillis + 1000 * 60),
|
||||||
|
PendingIntent.getBroadcast(
|
||||||
|
context,
|
||||||
|
event.eventID.toInt(),
|
||||||
|
Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
|
action = Actions.ACTION_TIME_UPDATE
|
||||||
|
if (event.startDate > now.timeInMillis)
|
||||||
putExtra(EVENT_ID, event.eventID)
|
putExtra(EVENT_ID, event.eventID)
|
||||||
},
|
},
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
|
||||||
)
|
)
|
||||||
}
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun removeUpdates(context: Context) {
|
fun removeUpdates(context: Context) {
|
||||||
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
|
cancel(PendingIntent.getBroadcast(context, 0, Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
|
action = Actions.ACTION_CALENDAR_UPDATE
|
||||||
|
}, 0))
|
||||||
val eventRepository = EventRepository(context)
|
val eventRepository = EventRepository(context)
|
||||||
eventRepository.getFutureEvents().forEach {
|
eventRepository.getFutureEvents().forEach {
|
||||||
cancel(PendingIntent.getBroadcast(context, it.eventID.toInt(), Intent(context, UpdatesReceiver::class.java), 0))
|
cancel(PendingIntent.getBroadcast(context, it.eventID.toInt(), Intent(context, UpdatesReceiver::class.java).apply {
|
||||||
|
action = Actions.ACTION_TIME_UPDATE
|
||||||
|
}, 0))
|
||||||
}
|
}
|
||||||
eventRepository.close()
|
eventRepository.close()
|
||||||
}
|
}
|
||||||
|
@ -22,21 +22,14 @@ class WeatherReceiver : BroadcastReceiver() {
|
|||||||
Intent.ACTION_MY_PACKAGE_REPLACED,
|
Intent.ACTION_MY_PACKAGE_REPLACED,
|
||||||
Intent.ACTION_TIMEZONE_CHANGED,
|
Intent.ACTION_TIMEZONE_CHANGED,
|
||||||
Intent.ACTION_LOCALE_CHANGED,
|
Intent.ACTION_LOCALE_CHANGED,
|
||||||
Intent.ACTION_TIME_CHANGED -> setUpdates(context)
|
Intent.ACTION_TIME_CHANGED,
|
||||||
|
Actions.ACTION_WEATHER_UPDATE -> setUpdates(context)
|
||||||
Actions.ACTION_WEATHER_UPDATE -> {
|
|
||||||
GlobalScope.launch(Dispatchers.IO) {
|
|
||||||
WeatherHelper.updateWeather(context)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
private const val MINUTE = 60 * 1000L
|
private const val MINUTE = 60 * 1000L
|
||||||
fun setUpdates(context: Context) {
|
fun setUpdates(context: Context) {
|
||||||
removeUpdates(context)
|
|
||||||
|
|
||||||
if (Preferences.showWeather) {
|
if (Preferences.showWeather) {
|
||||||
val interval = MINUTE * when (Preferences.weatherRefreshPeriod) {
|
val interval = MINUTE * when (Preferences.weatherRefreshPeriod) {
|
||||||
0 -> 30
|
0 -> 30
|
||||||
@ -48,13 +41,15 @@ class WeatherReceiver : BroadcastReceiver() {
|
|||||||
else -> 60
|
else -> 60
|
||||||
}
|
}
|
||||||
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
with(context.getSystemService(Context.ALARM_SERVICE) as AlarmManager) {
|
||||||
setRepeating(
|
setExact(
|
||||||
AlarmManager.RTC,
|
AlarmManager.RTC,
|
||||||
Calendar.getInstance().timeInMillis,
|
System.currentTimeMillis() + interval,
|
||||||
interval,
|
|
||||||
PendingIntent.getBroadcast(context, 0, Intent(context, WeatherReceiver::class.java).apply { action = Actions.ACTION_WEATHER_UPDATE }, 0)
|
PendingIntent.getBroadcast(context, 0, Intent(context, WeatherReceiver::class.java).apply { action = Actions.ACTION_WEATHER_UPDATE }, 0)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
GlobalScope.launch(Dispatchers.IO) {
|
||||||
|
WeatherHelper.updateWeather(context)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,14 +16,15 @@ class WidgetClickListenerReceiver : BroadcastReceiver() {
|
|||||||
override fun onReceive(context: Context, intent: Intent) {
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
if (intent.action == Actions.ACTION_OPEN_WEATHER_INTENT) {
|
if (intent.action == Actions.ACTION_OPEN_WEATHER_INTENT) {
|
||||||
try {
|
try {
|
||||||
if (Preferences.weatherAppPackage == IntentHelper.REFRESH_WIDGET_OPTION) {
|
IntentHelper.getWeatherIntent(context).run {
|
||||||
context.sendBroadcast(IntentHelper.getWeatherIntent(context))
|
if (flags and Intent.FLAG_ACTIVITY_NEW_TASK == Intent.FLAG_ACTIVITY_NEW_TASK)
|
||||||
} else {
|
context.startActivity(this)
|
||||||
context.startActivity(IntentHelper.getWeatherIntent(context))
|
else
|
||||||
|
context.sendBroadcast(this)
|
||||||
}
|
}
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
e.printStackTrace()
|
e.printStackTrace()
|
||||||
val uri = Uri.parse("http://www.google.com/search?q=weather")
|
val uri = Uri.parse("https://www.google.com/search?q=weather")
|
||||||
val i = Intent(Intent.ACTION_VIEW, uri)
|
val i = Intent(Intent.ACTION_VIEW, uri)
|
||||||
i.flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
i.flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
try {
|
try {
|
||||||
|
@ -18,6 +18,7 @@ import com.tommasoberlose.anotherwidget.global.Preferences
|
|||||||
import com.tommasoberlose.anotherwidget.network.WeatherNetworkApi
|
import com.tommasoberlose.anotherwidget.network.WeatherNetworkApi
|
||||||
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
||||||
import com.tommasoberlose.anotherwidget.ui.fragments.MainFragment
|
import com.tommasoberlose.anotherwidget.ui.fragments.MainFragment
|
||||||
|
import com.tommasoberlose.anotherwidget.utils.checkGrantedPermission
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import org.greenrobot.eventbus.EventBus
|
import org.greenrobot.eventbus.EventBus
|
||||||
import java.lang.Exception
|
import java.lang.Exception
|
||||||
@ -37,12 +38,31 @@ class LocationService : Service() {
|
|||||||
startForeground(LOCATION_ACCESS_NOTIFICATION_ID, getLocationAccessNotification())
|
startForeground(LOCATION_ACCESS_NOTIFICATION_ID, getLocationAccessNotification())
|
||||||
job?.cancel()
|
job?.cancel()
|
||||||
job = GlobalScope.launch(Dispatchers.IO) {
|
job = GlobalScope.launch(Dispatchers.IO) {
|
||||||
if (ActivityCompat.checkSelfPermission(
|
if (checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION) &&
|
||||||
this@LocationService,
|
(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.R ||
|
||||||
Manifest.permission.ACCESS_FINE_LOCATION
|
checkGrantedPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION))
|
||||||
) == PackageManager.PERMISSION_GRANTED
|
|
||||||
) {
|
) {
|
||||||
LocationServices.getFusedLocationProviderClient(this@LocationService).lastLocation.addOnCompleteListener { task ->
|
if (com.google.android.gms.common.GoogleApiAvailability.getInstance()
|
||||||
|
.isGooglePlayServicesAvailable(this@LocationService)
|
||||||
|
== com.google.android.gms.common.ConnectionResult.SUCCESS
|
||||||
|
) {
|
||||||
|
LocationServices.getFusedLocationProviderClient(this@LocationService).lastLocation
|
||||||
|
} else {
|
||||||
|
val lm = getSystemService(LOCATION_SERVICE) as android.location.LocationManager
|
||||||
|
var location: android.location.Location? = null
|
||||||
|
for (provider in arrayOf(
|
||||||
|
"fused", // LocationManager.FUSED_PROVIDER,
|
||||||
|
android.location.LocationManager.GPS_PROVIDER,
|
||||||
|
android.location.LocationManager.NETWORK_PROVIDER,
|
||||||
|
android.location.LocationManager.PASSIVE_PROVIDER
|
||||||
|
)) {
|
||||||
|
if (lm.isProviderEnabled(provider)) {
|
||||||
|
location = lm.getLastKnownLocation(provider)
|
||||||
|
if (location != null) break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
com.google.android.gms.tasks.Tasks.forResult(location)
|
||||||
|
}.addOnCompleteListener { task ->
|
||||||
val networkApi = WeatherNetworkApi(this@LocationService)
|
val networkApi = WeatherNetworkApi(this@LocationService)
|
||||||
if (task.isSuccessful) {
|
if (task.isSuccessful) {
|
||||||
val location = task.result
|
val location = task.result
|
||||||
|
@ -55,18 +55,20 @@ class UpdateCalendarService : Service() {
|
|||||||
job?.cancel()
|
job?.cancel()
|
||||||
job = GlobalScope.launch(Dispatchers.IO) {
|
job = GlobalScope.launch(Dispatchers.IO) {
|
||||||
|
|
||||||
|
UpdatesReceiver.removeUpdates(this@UpdateCalendarService)
|
||||||
|
|
||||||
val eventRepository = EventRepository(this@UpdateCalendarService)
|
val eventRepository = EventRepository(this@UpdateCalendarService)
|
||||||
if (Preferences.showEvents) {
|
if (Preferences.showEvents) {
|
||||||
val eventList = ArrayList<Event>()
|
val eventList = ArrayList<Event>()
|
||||||
|
|
||||||
|
// fetch all events from now to next ACTION_CALENDAR_UPDATE + limit
|
||||||
val now = Calendar.getInstance()
|
val now = Calendar.getInstance()
|
||||||
val begin = Calendar.getInstance().apply {
|
val limit = Calendar.getInstance().apply {
|
||||||
set(Calendar.MILLISECOND, 0)
|
set(Calendar.MILLISECOND, 0)
|
||||||
set(Calendar.SECOND, 0)
|
set(Calendar.SECOND, 0)
|
||||||
set(Calendar.MINUTE, 0)
|
set(Calendar.MINUTE, 0)
|
||||||
set(Calendar.HOUR_OF_DAY, 0)
|
set(Calendar.HOUR_OF_DAY, 0)
|
||||||
}
|
add(Calendar.DATE, 1)
|
||||||
val limit = Calendar.getInstance().apply {
|
|
||||||
when (Preferences.showUntil) {
|
when (Preferences.showUntil) {
|
||||||
0 -> add(Calendar.HOUR, 3)
|
0 -> add(Calendar.HOUR, 3)
|
||||||
1 -> add(Calendar.HOUR, 6)
|
1 -> add(Calendar.HOUR, 6)
|
||||||
@ -85,29 +87,37 @@ class UpdateCalendarService : Service() {
|
|||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
eventRepository.resetNextEventData()
|
eventRepository.resetNextEventData()
|
||||||
|
eventRepository.clearEvents()
|
||||||
|
Preferences.showEvents = false
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
val provider = CalendarProvider(this@UpdateCalendarService)
|
val provider = CalendarProvider(this@UpdateCalendarService)
|
||||||
val data = provider.getInstances(begin.timeInMillis, limit.timeInMillis)
|
// apply time zone offset to correctly fetch all-day events
|
||||||
|
val data = provider.getInstances(
|
||||||
|
now.timeInMillis + now.timeZone.getOffset(now.timeInMillis).coerceAtMost(0),
|
||||||
|
limit.timeInMillis + limit.timeZone.getOffset(limit.timeInMillis).coerceAtLeast(0)
|
||||||
|
)
|
||||||
if (data != null) {
|
if (data != null) {
|
||||||
val instances = data.list
|
val instances = data.list
|
||||||
for (instance in instances) {
|
for (instance in instances) {
|
||||||
try {
|
try {
|
||||||
val e = provider.getEvent(instance.eventId)
|
val e = provider.getEvent(instance.eventId)
|
||||||
if (e != null && !e.deleted && instance.begin <= limit.timeInMillis && now.timeInMillis < instance.end && !CalendarHelper.getFilteredCalendarIdList()
|
if (e == null || e.deleted || CalendarHelper.getFilteredCalendarIdList().contains(e.calendarId))
|
||||||
.contains(e.calendarId)
|
continue
|
||||||
) {
|
if (e.allDay) {
|
||||||
if (e.allDay) {
|
val start = Calendar.getInstance()
|
||||||
val start = Calendar.getInstance()
|
start.timeInMillis = instance.begin
|
||||||
start.timeInMillis = instance.begin
|
val end = Calendar.getInstance()
|
||||||
val end = Calendar.getInstance()
|
end.timeInMillis = instance.end
|
||||||
end.timeInMillis = instance.end
|
instance.begin =
|
||||||
instance.begin =
|
start.timeInMillis - start.timeZone.getOffset(start.timeInMillis)
|
||||||
start.timeInMillis - start.timeZone.getOffset(start.timeInMillis)
|
instance.end =
|
||||||
instance.end =
|
end.timeInMillis - end.timeZone.getOffset(end.timeInMillis)
|
||||||
end.timeInMillis - end.timeZone.getOffset(end.timeInMillis)
|
}
|
||||||
}
|
if (instance.begin <= limit.timeInMillis && now.timeInMillis < instance.end) {
|
||||||
|
/* Following check may result in "fake" all-day events with
|
||||||
|
* non-UTC start/end time, and therefore cannot be found by
|
||||||
|
* Calendar when tapped to open details.
|
||||||
// Check all day events
|
// Check all day events
|
||||||
val startDate = Calendar.getInstance()
|
val startDate = Calendar.getInstance()
|
||||||
startDate.timeInMillis = instance.begin
|
startDate.timeInMillis = instance.begin
|
||||||
@ -124,6 +134,7 @@ class UpdateCalendarService : Service() {
|
|||||||
&& endDate.get(Calendar.MINUTE) == 0
|
&& endDate.get(Calendar.MINUTE) == 0
|
||||||
&& endDate.get(Calendar.HOUR_OF_DAY) == 0
|
&& endDate.get(Calendar.HOUR_OF_DAY) == 0
|
||||||
)
|
)
|
||||||
|
*/
|
||||||
|
|
||||||
eventList.add(
|
eventList.add(
|
||||||
Event(
|
Event(
|
||||||
@ -133,7 +144,7 @@ class UpdateCalendarService : Service() {
|
|||||||
startDate = instance.begin,
|
startDate = instance.begin,
|
||||||
endDate = instance.end,
|
endDate = instance.end,
|
||||||
calendarID = e.calendarId.toInt(),
|
calendarID = e.calendarId.toInt(),
|
||||||
allDay = isAllDay,
|
allDay = e.allDay,
|
||||||
address = e.eventLocation ?: "",
|
address = e.eventLocation ?: "",
|
||||||
selfAttendeeStatus = e.selfAttendeeStatus.toInt(),
|
selfAttendeeStatus = e.selfAttendeeStatus.toInt(),
|
||||||
availability = e.availability
|
availability = e.availability
|
||||||
@ -164,13 +175,14 @@ class UpdateCalendarService : Service() {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
eventRepository.resetNextEventData()
|
eventRepository.resetNextEventData()
|
||||||
|
eventRepository.clearEvents()
|
||||||
}
|
}
|
||||||
|
eventRepository.close()
|
||||||
|
|
||||||
UpdatesReceiver.setUpdates(this@UpdateCalendarService)
|
UpdatesReceiver.setUpdates(this@UpdateCalendarService)
|
||||||
MainWidget.updateWidget(this@UpdateCalendarService)
|
MainWidget.updateWidget(this@UpdateCalendarService)
|
||||||
|
|
||||||
EventBus.getDefault().post(MainFragment.UpdateUiMessageEvent())
|
EventBus.getDefault().post(MainFragment.UpdateUiMessageEvent())
|
||||||
eventRepository.close()
|
|
||||||
|
|
||||||
stopSelf()
|
stopSelf()
|
||||||
}
|
}
|
||||||
|
@ -140,6 +140,7 @@ class MainActivity : AppCompatActivity(), SharedPreferences.OnSharedPreferenceCh
|
|||||||
|
|
||||||
if (Preferences.showEvents && !checkGrantedPermission(Manifest.permission.READ_CALENDAR)) {
|
if (Preferences.showEvents && !checkGrantedPermission(Manifest.permission.READ_CALENDAR)) {
|
||||||
Preferences.showEvents = false
|
Preferences.showEvents = false
|
||||||
|
com.tommasoberlose.anotherwidget.receivers.UpdatesReceiver.removeUpdates(this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,12 +38,15 @@ class CustomFontActivity : AppCompatActivity() {
|
|||||||
private lateinit var adapter: SlimAdapter
|
private lateinit var adapter: SlimAdapter
|
||||||
private lateinit var viewModel: CustomFontViewModel
|
private lateinit var viewModel: CustomFontViewModel
|
||||||
private lateinit var binding: ActivityCustomFontBinding
|
private lateinit var binding: ActivityCustomFontBinding
|
||||||
|
private lateinit var handlerThread: HandlerThread
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
viewModel = ViewModelProvider(this).get(CustomFontViewModel::class.java)
|
viewModel = ViewModelProvider(this).get(CustomFontViewModel::class.java)
|
||||||
binding = ActivityCustomFontBinding.inflate(layoutInflater)
|
binding = ActivityCustomFontBinding.inflate(layoutInflater)
|
||||||
|
handlerThread = HandlerThread("listCustomFonts")
|
||||||
|
handlerThread.start()
|
||||||
|
|
||||||
binding.listView.setHasFixedSize(true)
|
binding.listView.setHasFixedSize(true)
|
||||||
val mLayoutManager = LinearLayoutManager(this)
|
val mLayoutManager = LinearLayoutManager(this)
|
||||||
@ -64,14 +67,17 @@ class CustomFontActivity : AppCompatActivity() {
|
|||||||
injector
|
injector
|
||||||
.text(R.id.text, item)
|
.text(R.id.text, item)
|
||||||
.with<TextView>(R.id.text) {
|
.with<TextView>(R.id.text) {
|
||||||
val googleSans: Typeface = when (Preferences.customFontVariant) {
|
val googleSans: Typeface? = androidx.core.content.res.ResourcesCompat.getFont(
|
||||||
"100" -> Typeface.createFromAsset(this.assets, "fonts/google_sans_thin.ttf")
|
this,
|
||||||
"200" -> Typeface.createFromAsset(this.assets, "fonts/google_sans_light.ttf")
|
when (Preferences.customFontVariant) {
|
||||||
"500" -> Typeface.createFromAsset(this.assets, "fonts/google_sans_medium.ttf")
|
"100" -> R.font.google_sans_thin
|
||||||
"700" -> Typeface.createFromAsset(this.assets, "fonts/google_sans_bold.ttf")
|
"200" -> R.font.google_sans_light
|
||||||
"800" -> Typeface.createFromAsset(this.assets, "fonts/google_sans_black.ttf")
|
"500" -> R.font.google_sans_medium
|
||||||
else -> Typeface.createFromAsset(this.assets, "fonts/google_sans_regular.ttf")
|
"700" -> R.font.google_sans_bold
|
||||||
}
|
"800" -> R.font.google_sans_black
|
||||||
|
else -> R.font.google_sans_regular
|
||||||
|
}
|
||||||
|
)
|
||||||
it.typeface = googleSans
|
it.typeface = googleSans
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -97,32 +103,49 @@ class CustomFontActivity : AppCompatActivity() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
val callback = object : FontsContractCompat.FontRequestCallback() {
|
class Callback : FontsContractCompat.FontRequestCallback() {
|
||||||
override fun onTypefaceRetrieved(typeface: Typeface) {
|
var handler: Handler? = Handler(handlerThread.looper)
|
||||||
it.typeface = typeface
|
|
||||||
it.isVisible = true
|
|
||||||
|
|
||||||
it.measure(
|
fun cancel() {
|
||||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
if (handler != null) {
|
||||||
ViewGroup.LayoutParams.WRAP_CONTENT
|
handler!!.removeCallbacksAndMessages(null)
|
||||||
)
|
handler = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected fun finalize() {
|
||||||
|
cancel()
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onTypefaceRetrieved(typeface: Typeface) {
|
||||||
|
if (it.tag == this) {
|
||||||
|
it.tag = null
|
||||||
|
it.typeface = typeface
|
||||||
|
it.setTextColor(getColor(R.color.colorPrimaryText))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTypefaceRequestFailed(reason: Int) {
|
override fun onTypefaceRequestFailed(reason: Int) {
|
||||||
it.isVisible = false
|
if (it.tag == this) {
|
||||||
it.layoutParams = it.layoutParams.apply {
|
it.tag = null
|
||||||
height = 0
|
//it.text = item.fontFamily + " ($reason)"
|
||||||
|
it.setTextColor(getColor(R.color.errorColorText))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val handlerThread = HandlerThread(item.fontFamily)
|
(it.tag as Callback?)?.cancel()
|
||||||
handlerThread.start()
|
val callback = Callback()
|
||||||
val mHandler = Handler(handlerThread.looper)
|
it.tag = callback
|
||||||
|
it.typeface = null
|
||||||
|
it.setTextColor(getColor(R.color.colorSecondaryText))
|
||||||
|
|
||||||
|
val mHandler = callback.handler!!
|
||||||
FontsContractCompat.requestFont(this, request, callback, mHandler)
|
FontsContractCompat.requestFont(this, request, callback, mHandler)
|
||||||
}
|
}
|
||||||
|
|
||||||
injector.clicked(R.id.text) {
|
injector.clicked(R.id.text) {
|
||||||
|
if ((it as TextView).typeface == null) return@clicked
|
||||||
val dialog = BottomSheetMenu<Int>(this, header = item.fontFamily)
|
val dialog = BottomSheetMenu<Int>(this, header = item.fontFamily)
|
||||||
if (item.fontVariants.isEmpty()) {
|
if (item.fontVariants.isEmpty()) {
|
||||||
dialog.addItem(SettingsStringHelper.getVariantLabel(this, "regular"), -1)
|
dialog.addItem(SettingsStringHelper.getVariantLabel(this, "regular"), -1)
|
||||||
@ -147,6 +170,12 @@ class CustomFontActivity : AppCompatActivity() {
|
|||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
handlerThread.quit()
|
||||||
|
filterJob?.cancel()
|
||||||
|
super.onDestroy()
|
||||||
|
}
|
||||||
|
|
||||||
private var filterJob: Job? = null
|
private var filterJob: Job? = null
|
||||||
|
|
||||||
private fun subscribeUi(binding: ActivityCustomFontBinding, viewModel: CustomFontViewModel) {
|
private fun subscribeUi(binding: ActivityCustomFontBinding, viewModel: CustomFontViewModel) {
|
||||||
@ -204,6 +233,13 @@ class CustomFontActivity : AppCompatActivity() {
|
|||||||
adapter.updateData(filteredList)
|
adapter.updateData(filteredList)
|
||||||
binding.loader.visibility = View.INVISIBLE
|
binding.loader.visibility = View.INVISIBLE
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
delay(200)
|
||||||
|
withContext(Dispatchers.Main) {
|
||||||
|
adapter.updateData(listOf(getString(R.string.custom_font_subtitle_1)).filter {
|
||||||
|
it.contains(search ?: "", ignoreCase = true)
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,11 +46,16 @@ class CustomLocationActivity : AppCompatActivity() {
|
|||||||
adapter = SlimAdapter.create()
|
adapter = SlimAdapter.create()
|
||||||
adapter
|
adapter
|
||||||
.register<String>(R.layout.custom_location_item) { _, injector ->
|
.register<String>(R.layout.custom_location_item) { _, injector ->
|
||||||
injector
|
injector.text(R.id.text, getString(R.string.custom_location_gps))
|
||||||
.text(R.id.text, getString(R.string.custom_location_gps))
|
injector.clicked(R.id.text) {
|
||||||
.clicked(R.id.text) {
|
Preferences.bulk {
|
||||||
requirePermission()
|
remove(Preferences::customLocationLat)
|
||||||
|
remove(Preferences::customLocationLon)
|
||||||
|
remove(Preferences::customLocationAdd)
|
||||||
}
|
}
|
||||||
|
setResult(Activity.RESULT_OK)
|
||||||
|
finish()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.register<Address>(R.layout.custom_location_item) { item, injector ->
|
.register<Address>(R.layout.custom_location_item) { item, injector ->
|
||||||
injector.text(R.id.text, item.getAddressLine(0) ?: "")
|
injector.text(R.id.text, item.getAddressLine(0) ?: "")
|
||||||
@ -59,9 +64,9 @@ class CustomLocationActivity : AppCompatActivity() {
|
|||||||
customLocationLat = item.latitude.toString()
|
customLocationLat = item.latitude.toString()
|
||||||
customLocationLon = item.longitude.toString()
|
customLocationLon = item.longitude.toString()
|
||||||
customLocationAdd = item.getAddressLine(0) ?: ""
|
customLocationAdd = item.getAddressLine(0) ?: ""
|
||||||
setResult(Activity.RESULT_OK)
|
|
||||||
finish()
|
|
||||||
}
|
}
|
||||||
|
setResult(Activity.RESULT_OK)
|
||||||
|
finish()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.attachTo(binding.listView)
|
.attachTo(binding.listView)
|
||||||
@ -115,36 +120,6 @@ class CustomLocationActivity : AppCompatActivity() {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun requirePermission() {
|
|
||||||
Dexter.withContext(this)
|
|
||||||
.withPermissions(
|
|
||||||
Manifest.permission.ACCESS_FINE_LOCATION
|
|
||||||
).withListener(object: MultiplePermissionsListener {
|
|
||||||
override fun onPermissionsChecked(report: MultiplePermissionsReport?) {
|
|
||||||
report?.let {
|
|
||||||
if (report.areAllPermissionsGranted()){
|
|
||||||
Preferences.bulk {
|
|
||||||
remove(Preferences::customLocationLat)
|
|
||||||
remove(Preferences::customLocationLon)
|
|
||||||
remove(Preferences::customLocationAdd)
|
|
||||||
}
|
|
||||||
setResult(Activity.RESULT_OK)
|
|
||||||
finish()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
override fun onPermissionRationaleShouldBeShown(
|
|
||||||
permissions: MutableList<PermissionRequest>?,
|
|
||||||
token: PermissionToken?
|
|
||||||
) {
|
|
||||||
// Remember to invoke this method when the custom rationale is closed
|
|
||||||
// or just by default if you don't want to use any custom rationale.
|
|
||||||
token?.continuePermissionRequest()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.check()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun setupListener() {
|
private fun setupListener() {
|
||||||
binding.actionBack.setOnClickListener {
|
binding.actionBack.setOnClickListener {
|
||||||
onBackPressed()
|
onBackPressed()
|
||||||
|
@ -127,11 +127,11 @@ class WeatherProviderActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
private fun subscribeUi(viewModel: WeatherProviderViewModel) {
|
private fun subscribeUi(viewModel: WeatherProviderViewModel) {
|
||||||
viewModel.weatherProviderError.observe(this) {
|
viewModel.weatherProviderError.observe(this) {
|
||||||
updateListItem()
|
binding.listView.postDelayed({ updateListItem() }, 300)
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.weatherProviderLocationError.observe(this) {
|
viewModel.weatherProviderLocationError.observe(this) {
|
||||||
updateListItem()
|
binding.listView.postDelayed({ updateListItem() }, 300)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,16 +8,10 @@ import android.os.Bundle
|
|||||||
import android.provider.Settings
|
import android.provider.Settings
|
||||||
import android.util.DisplayMetrics
|
import android.util.DisplayMetrics
|
||||||
import android.util.Log
|
import android.util.Log
|
||||||
import android.util.TypedValue
|
|
||||||
import android.view.Gravity
|
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.LinearLayout
|
import android.widget.RemoteViews
|
||||||
import android.widget.RelativeLayout
|
|
||||||
import androidx.core.content.ContextCompat
|
|
||||||
import androidx.core.view.children
|
|
||||||
import androidx.core.view.isVisible
|
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import androidx.lifecycle.ViewModelProvider
|
import androidx.lifecycle.ViewModelProvider
|
||||||
import androidx.lifecycle.lifecycleScope
|
import androidx.lifecycle.lifecycleScope
|
||||||
@ -30,23 +24,20 @@ import com.tommasoberlose.anotherwidget.databinding.FragmentAppMainBinding
|
|||||||
import com.tommasoberlose.anotherwidget.global.Constants
|
import com.tommasoberlose.anotherwidget.global.Constants
|
||||||
import com.tommasoberlose.anotherwidget.global.Preferences
|
import com.tommasoberlose.anotherwidget.global.Preferences
|
||||||
import com.tommasoberlose.anotherwidget.helpers.*
|
import com.tommasoberlose.anotherwidget.helpers.*
|
||||||
import com.tommasoberlose.anotherwidget.helpers.ColorHelper.isColorDark
|
|
||||||
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
||||||
import com.tommasoberlose.anotherwidget.ui.viewmodels.MainViewModel
|
import com.tommasoberlose.anotherwidget.ui.viewmodels.MainViewModel
|
||||||
import com.tommasoberlose.anotherwidget.ui.widgets.MainWidget
|
import com.tommasoberlose.anotherwidget.ui.widgets.MainWidget
|
||||||
import com.tommasoberlose.anotherwidget.ui.widgets.StandardWidget
|
|
||||||
import com.tommasoberlose.anotherwidget.utils.*
|
import com.tommasoberlose.anotherwidget.utils.*
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
import org.greenrobot.eventbus.EventBus
|
import org.greenrobot.eventbus.EventBus
|
||||||
import org.greenrobot.eventbus.Subscribe
|
import org.greenrobot.eventbus.Subscribe
|
||||||
import org.greenrobot.eventbus.ThreadMode
|
import org.greenrobot.eventbus.ThreadMode
|
||||||
|
|
||||||
|
|
||||||
class MainFragment : Fragment() {
|
class MainFragment : Fragment() {
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun newInstance() = MainFragment()
|
fun newInstance() = MainFragment()
|
||||||
private val PREVIEW_BASE_HEIGHT: Int
|
|
||||||
get() = if (Preferences.widgetAlign == Constants.WidgetAlign.CENTER.rawValue) 120 else 180
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private lateinit var viewModel: MainViewModel
|
private lateinit var viewModel: MainViewModel
|
||||||
@ -98,13 +89,7 @@ class MainFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
binding.actionSettings.setOnSingleClickListener {
|
binding.actionSettings.setOnSingleClickListener {
|
||||||
Navigation.findNavController(it).navigate(R.id.action_appMainFragment_to_appSettingsFragment,)
|
Navigation.findNavController(it).navigate(R.id.action_appMainFragment_to_appSettingsFragment)
|
||||||
}
|
|
||||||
|
|
||||||
binding.preview.layoutParams = binding.preview.layoutParams.apply {
|
|
||||||
height = PREVIEW_BASE_HEIGHT.toPixel(requireContext()) + if (Preferences.showClock) 100.toPixel(
|
|
||||||
requireContext()
|
|
||||||
) else 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
subscribeUi(viewModel)
|
subscribeUi(viewModel)
|
||||||
@ -156,82 +141,40 @@ class MainFragment : Fragment() {
|
|||||||
binding.toolbar.cardElevation = if (it > 0) 24f else 0f
|
binding.toolbar.cardElevation = if (it > 0) 24f else 0f
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.widgetAlign.observe(viewLifecycleOwner) {
|
|
||||||
updatePreviewVisibility()
|
|
||||||
lifecycleScope.launch {
|
|
||||||
delay(350)
|
|
||||||
updateClock()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
viewModel.showPreview.observe(viewLifecycleOwner) {
|
|
||||||
updatePreviewVisibility()
|
|
||||||
}
|
|
||||||
|
|
||||||
viewModel.clockPreferencesUpdate.observe(viewLifecycleOwner) {
|
|
||||||
updateClock()
|
|
||||||
}
|
|
||||||
|
|
||||||
viewModel.widgetPreferencesUpdate.observe(viewLifecycleOwner) {
|
viewModel.widgetPreferencesUpdate.observe(viewLifecycleOwner) {
|
||||||
onUpdateUiEvent(null)
|
onUpdateUiEvent(null)
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.showClock.observe(viewLifecycleOwner) {
|
|
||||||
updateClockVisibility(it)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private var uiJob: Job? = null
|
private var uiJob: Job? = null
|
||||||
|
|
||||||
private fun updateUI() {
|
private fun updateUI() {
|
||||||
if (Preferences.showPreview) {
|
if (Preferences.showPreview) {
|
||||||
lifecycleScope.launch(Dispatchers.IO) {
|
|
||||||
val bgColor: Int = ContextCompat.getColor(
|
|
||||||
requireContext(),
|
|
||||||
if (ColorHelper.getFontColor(requireActivity().isDarkTheme())
|
|
||||||
.isColorDark()
|
|
||||||
) android.R.color.white else R.color.colorAccent
|
|
||||||
)
|
|
||||||
|
|
||||||
val wallpaperDrawable = BitmapHelper.getTintedDrawable(
|
|
||||||
requireContext(),
|
|
||||||
R.drawable.card_background,
|
|
||||||
ColorHelper.getBackgroundColor(requireActivity().isDarkTheme())
|
|
||||||
)
|
|
||||||
|
|
||||||
withContext(Dispatchers.Main) {
|
|
||||||
binding.preview.setCardBackgroundColor(bgColor)
|
|
||||||
binding.widgetDetail.widgetShapeBackground.setImageDrawable(wallpaperDrawable)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
WidgetHelper.runWithCustomTypeface(requireContext()) { typeface ->
|
WidgetHelper.runWithCustomTypeface(requireContext()) { typeface ->
|
||||||
uiJob?.cancel()
|
uiJob?.cancel()
|
||||||
uiJob = lifecycleScope.launch(Dispatchers.IO) {
|
uiJob = lifecycleScope.launch(Dispatchers.IO) {
|
||||||
val generatedView = MainWidget.getWidgetView(requireContext(), typeface)?.root
|
val generatedView = MainWidget.getWidgetView(
|
||||||
|
requireContext(),
|
||||||
|
binding.widget.width - binding.widget.paddingStart - binding.widget.paddingEnd,
|
||||||
|
typeface
|
||||||
|
)
|
||||||
|
|
||||||
if (generatedView != null) {
|
if (generatedView != null) {
|
||||||
withContext(Dispatchers.Main) {
|
withContext(Dispatchers.Main) {
|
||||||
|
val view: View = generatedView.apply(requireActivity().applicationContext, binding.widget)
|
||||||
|
view.measure(0, 0)
|
||||||
|
|
||||||
binding.widgetDetail.content.removeAllViews()
|
binding.widgetLoader.animate().scaleX(1f).scaleY(1f).alpha(1f)
|
||||||
val container = LinearLayout(requireContext()).apply {
|
|
||||||
layoutParams = LinearLayout.LayoutParams(
|
|
||||||
LinearLayout.LayoutParams.MATCH_PARENT,
|
|
||||||
LinearLayout.LayoutParams.WRAP_CONTENT
|
|
||||||
)
|
|
||||||
}
|
|
||||||
container.gravity = when (Preferences.widgetAlign) {
|
|
||||||
Constants.WidgetAlign.CENTER.rawValue -> Gravity.CENTER_HORIZONTAL
|
|
||||||
Constants.WidgetAlign.LEFT.rawValue -> Gravity.START
|
|
||||||
Constants.WidgetAlign.RIGHT.rawValue -> Gravity.END
|
|
||||||
else -> Gravity.NO_GRAVITY
|
|
||||||
}
|
|
||||||
container.addView(generatedView)
|
|
||||||
binding.widgetDetail.content.addView(container)
|
|
||||||
|
|
||||||
binding.widgetLoader.animate().scaleX(0f).scaleY(0f).alpha(0f)
|
|
||||||
.setDuration(200L).start()
|
.setDuration(200L).start()
|
||||||
binding.widget.animate().alpha(1f).start()
|
binding.widget.animate().alpha(0f).setDuration(200L).withEndAction {
|
||||||
|
binding.widget.removeAllViews()
|
||||||
|
binding.widget.addView(view)
|
||||||
|
|
||||||
|
updatePreviewVisibility(view.measuredHeight)
|
||||||
|
binding.widgetLoader.animate().scaleX(0f).scaleY(0f).alpha(0f)
|
||||||
|
.setDuration(200L).start()
|
||||||
|
binding.widget.animate().alpha(1f).start()
|
||||||
|
}.start()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -239,136 +182,13 @@ class MainFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun updateClock() {
|
private fun updatePreviewVisibility(widgetHeight: Int) {
|
||||||
// Clock
|
val newHeight = widgetHeight + 32f.convertDpToPixel(requireContext()).toInt()
|
||||||
binding.widgetDetail.time.setTextColor(ColorHelper.getClockFontColor(requireActivity().isDarkTheme()))
|
if (binding.preview.layoutParams.height != newHeight) {
|
||||||
binding.widgetDetail.timeAmPm.setTextColor(ColorHelper.getClockFontColor(requireActivity().isDarkTheme()))
|
binding.preview.clearAnimation()
|
||||||
binding.widgetDetail.time.setTextSize(
|
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
|
||||||
Preferences.clockTextSize.toPixel(requireContext())
|
|
||||||
)
|
|
||||||
binding.widgetDetail.timeAmPm.setTextSize(
|
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
|
||||||
Preferences.clockTextSize.toPixel(requireContext()) / 5 * 2
|
|
||||||
)
|
|
||||||
binding.widgetDetail.timeAmPm.isVisible = Preferences.showAMPMIndicator
|
|
||||||
|
|
||||||
// Timezones
|
|
||||||
if (Preferences.altTimezoneId != "" && Preferences.altTimezoneLabel != "") {
|
|
||||||
// Clock
|
|
||||||
binding.widgetDetail.altTimezoneTime.timeZone = Preferences.altTimezoneId
|
|
||||||
binding.widgetDetail.altTimezoneTimeAmPm.timeZone = Preferences.altTimezoneId
|
|
||||||
binding.widgetDetail.altTimezoneLabel.text = Preferences.altTimezoneLabel
|
|
||||||
binding.widgetDetail.altTimezoneTime.setTextColor(ColorHelper.getClockFontColor(requireActivity().isDarkTheme()))
|
|
||||||
binding.widgetDetail.altTimezoneTimeAmPm.setTextColor(ColorHelper.getClockFontColor(requireActivity().isDarkTheme()))
|
|
||||||
binding.widgetDetail.altTimezoneLabel.setTextColor(ColorHelper.getClockFontColor(requireActivity().isDarkTheme()))
|
|
||||||
binding.widgetDetail.altTimezoneTime.setTextSize(
|
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
|
||||||
Preferences.clockTextSize.toPixel(requireContext()) / 3
|
|
||||||
)
|
|
||||||
binding.widgetDetail.altTimezoneTimeAmPm.setTextSize(
|
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
|
||||||
(Preferences.clockTextSize.toPixel(requireContext()) / 3) / 5 * 2
|
|
||||||
)
|
|
||||||
binding.widgetDetail.altTimezoneLabel.setTextSize(
|
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
|
||||||
(Preferences.clockTextSize.toPixel(requireContext()) / 3) / 5 * 2
|
|
||||||
)
|
|
||||||
binding.widgetDetail.timezonesContainer.isVisible = true
|
|
||||||
} else {
|
|
||||||
binding.widgetDetail.timezonesContainer.isVisible = false
|
|
||||||
}
|
|
||||||
|
|
||||||
// Clock bottom margin
|
|
||||||
binding.widgetDetail.clockBottomMarginNone.isVisible =
|
|
||||||
Preferences.showClock && Preferences.clockBottomMargin == Constants.ClockBottomMargin.NONE.rawValue
|
|
||||||
binding.widgetDetail.clockBottomMarginSmall.isVisible =
|
|
||||||
Preferences.showClock && Preferences.clockBottomMargin == Constants.ClockBottomMargin.SMALL.rawValue
|
|
||||||
binding.widgetDetail.clockBottomMarginMedium.isVisible =
|
|
||||||
Preferences.showClock && Preferences.clockBottomMargin == Constants.ClockBottomMargin.MEDIUM.rawValue
|
|
||||||
binding.widgetDetail.clockBottomMarginLarge.isVisible =
|
|
||||||
Preferences.showClock && Preferences.clockBottomMargin == Constants.ClockBottomMargin.LARGE.rawValue
|
|
||||||
|
|
||||||
// Align
|
|
||||||
binding.widgetDetail.timeContainer.layoutParams = (binding.widgetDetail.timeContainer.layoutParams as LinearLayout.LayoutParams).apply {
|
|
||||||
gravity = when (Preferences.widgetAlign) {
|
|
||||||
Constants.WidgetAlign.CENTER.rawValue -> Gravity.CENTER_HORIZONTAL
|
|
||||||
Constants.WidgetAlign.LEFT.rawValue -> Gravity.START
|
|
||||||
Constants.WidgetAlign.RIGHT.rawValue -> Gravity.END
|
|
||||||
else -> Gravity.NO_GRAVITY
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (Preferences.widgetAlign == Constants.WidgetAlign.RIGHT.rawValue) {
|
|
||||||
with (binding.widgetDetail.timeContainer) {
|
|
||||||
val child = getChildAt(2)
|
|
||||||
if (child.id == R.id.timezones_container) {
|
|
||||||
removeViewAt(2)
|
|
||||||
child.layoutParams = (child.layoutParams as ViewGroup.MarginLayoutParams).apply {
|
|
||||||
marginEnd = 16f.convertDpToPixel(requireContext()).toInt()
|
|
||||||
}
|
|
||||||
addView(child, 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
with (binding.widgetDetail.timeContainer) {
|
|
||||||
val child = getChildAt(0)
|
|
||||||
if (child.id == R.id.timezones_container) {
|
|
||||||
removeViewAt(0)
|
|
||||||
child.layoutParams = (child.layoutParams as ViewGroup.MarginLayoutParams).apply {
|
|
||||||
marginEnd = 0
|
|
||||||
}
|
|
||||||
addView(child, 2)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updateClockVisibility(showClock: Boolean) {
|
|
||||||
binding.widgetDetail.timeContainer.clearAnimation()
|
|
||||||
binding.widgetDetail.time.clearAnimation()
|
|
||||||
|
|
||||||
updatePreviewVisibility()
|
|
||||||
|
|
||||||
if (showClock) {
|
|
||||||
binding.widgetDetail.timeContainer.layoutParams = (binding.widgetDetail.timeContainer.layoutParams as LinearLayout.LayoutParams).apply {
|
|
||||||
height = RelativeLayout.LayoutParams.WRAP_CONTENT
|
|
||||||
}
|
|
||||||
binding.widgetDetail.timeContainer.measure(0, 0)
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((Preferences.showClock && binding.widgetDetail.time.alpha != 1f) || (!Preferences.showClock && binding.widgetDetail.time.alpha != 0f)) {
|
|
||||||
val initialHeight = binding.widgetDetail.timeContainer.measuredHeight
|
|
||||||
ValueAnimator.ofFloat(
|
|
||||||
if (showClock) 0f else 1f,
|
|
||||||
if (showClock) 1f else 0f
|
|
||||||
).apply {
|
|
||||||
duration = 500L
|
|
||||||
addUpdateListener {
|
|
||||||
val animatedValue = animatedValue as Float
|
|
||||||
binding.widgetDetail.timeContainer.layoutParams =
|
|
||||||
binding.widgetDetail.timeContainer.layoutParams.apply {
|
|
||||||
height = (initialHeight * animatedValue).toInt()
|
|
||||||
}
|
|
||||||
binding.widgetDetail.time.alpha = animatedValue
|
|
||||||
binding.widgetDetail.timeAmPm.alpha = animatedValue
|
|
||||||
binding.widgetDetail.altTimezoneTime.alpha = animatedValue
|
|
||||||
binding.widgetDetail.altTimezoneTimeAmPm.alpha = animatedValue
|
|
||||||
binding.widgetDetail.altTimezoneLabel.alpha = animatedValue
|
|
||||||
}
|
|
||||||
}.start()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun updatePreviewVisibility() {
|
|
||||||
binding.preview.clearAnimation()
|
|
||||||
if (binding.preview.layoutParams.height != (if (Preferences.showPreview) PREVIEW_BASE_HEIGHT.toPixel(requireContext()) else 0) + (if (Preferences.showClock) 100.toPixel(
|
|
||||||
requireContext()
|
|
||||||
) else 0)) {
|
|
||||||
ValueAnimator.ofInt(
|
ValueAnimator.ofInt(
|
||||||
binding.preview.height,
|
binding.preview.height,
|
||||||
(if (Preferences.showPreview) PREVIEW_BASE_HEIGHT.toPixel(requireContext()) else 0) + (if (Preferences.showClock) 100.toPixel(
|
newHeight
|
||||||
requireContext()
|
|
||||||
) else 0)
|
|
||||||
).apply {
|
).apply {
|
||||||
duration = 500L
|
duration = 500L
|
||||||
addUpdateListener {
|
addUpdateListener {
|
||||||
|
@ -182,7 +182,7 @@ class CalendarFragment : Fragment() {
|
|||||||
|
|
||||||
binding.showAllDayToggle.setOnCheckedChangeListener { _, isChecked ->
|
binding.showAllDayToggle.setOnCheckedChangeListener { _, isChecked ->
|
||||||
Preferences.calendarAllDay = isChecked
|
Preferences.calendarAllDay = isChecked
|
||||||
MainWidget.updateWidget(requireContext())
|
updateCalendar()
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.actionChangeAttendeeFilter.setOnClickListener {
|
binding.actionChangeAttendeeFilter.setOnClickListener {
|
||||||
@ -227,7 +227,7 @@ class CalendarFragment : Fragment() {
|
|||||||
|
|
||||||
binding.showOnlyBusyEventsToggle.setOnCheckedChangeListener { _, isChecked ->
|
binding.showOnlyBusyEventsToggle.setOnCheckedChangeListener { _, isChecked ->
|
||||||
Preferences.showOnlyBusyEvents = isChecked
|
Preferences.showOnlyBusyEvents = isChecked
|
||||||
MainWidget.updateWidget(requireContext())
|
updateCalendar()
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.actionShowDiffTime.setOnClickListener {
|
binding.actionShowDiffTime.setOnClickListener {
|
||||||
@ -236,6 +236,7 @@ class CalendarFragment : Fragment() {
|
|||||||
|
|
||||||
binding.showDiffTimeToggle.setOnCheckedChangeListener { _, isChecked ->
|
binding.showDiffTimeToggle.setOnCheckedChangeListener { _, isChecked ->
|
||||||
Preferences.showDiffTime = isChecked
|
Preferences.showDiffTime = isChecked
|
||||||
|
updateCalendar()
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.actionShowNextEventOnMultipleLines.setOnClickListener {
|
binding.actionShowNextEventOnMultipleLines.setOnClickListener {
|
||||||
@ -254,6 +255,7 @@ class CalendarFragment : Fragment() {
|
|||||||
.addItem(getString(R.string.settings_widget_update_frequency_low), Constants.WidgetUpdateFrequency.LOW.rawValue)
|
.addItem(getString(R.string.settings_widget_update_frequency_low), Constants.WidgetUpdateFrequency.LOW.rawValue)
|
||||||
.addOnSelectItemListener { value ->
|
.addOnSelectItemListener { value ->
|
||||||
Preferences.widgetUpdateFrequency = value
|
Preferences.widgetUpdateFrequency = value
|
||||||
|
updateCalendar()
|
||||||
}.show()
|
}.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ import com.chibatching.kotpref.bulk
|
|||||||
import com.google.android.material.transition.MaterialSharedAxis
|
import com.google.android.material.transition.MaterialSharedAxis
|
||||||
import com.tommasoberlose.anotherwidget.R
|
import com.tommasoberlose.anotherwidget.R
|
||||||
import com.tommasoberlose.anotherwidget.components.BottomSheetColorPicker
|
import com.tommasoberlose.anotherwidget.components.BottomSheetColorPicker
|
||||||
import com.tommasoberlose.anotherwidget.components.BottomSheetMenu
|
import com.tommasoberlose.anotherwidget.components.BottomSheetPicker
|
||||||
import com.tommasoberlose.anotherwidget.databinding.FragmentTabClockBinding
|
import com.tommasoberlose.anotherwidget.databinding.FragmentTabClockBinding
|
||||||
import com.tommasoberlose.anotherwidget.global.Constants
|
import com.tommasoberlose.anotherwidget.global.Constants
|
||||||
import com.tommasoberlose.anotherwidget.global.Preferences
|
import com.tommasoberlose.anotherwidget.global.Preferences
|
||||||
@ -144,16 +144,15 @@ class ClockFragment : Fragment() {
|
|||||||
private fun setupListener() {
|
private fun setupListener() {
|
||||||
|
|
||||||
binding.actionClockTextSize.setOnClickListener {
|
binding.actionClockTextSize.setOnClickListener {
|
||||||
val dialog = BottomSheetMenu<Float>(
|
BottomSheetPicker(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
header = getString(R.string.settings_clock_text_size_title)
|
items = (120 downTo 30).filter { it % 2 == 0 }.map { BottomSheetPicker.MenuItem("${it}sp", it.toFloat()) },
|
||||||
).setSelectedValue(Preferences.clockTextSize)
|
getSelected = { Preferences.clockTextSize },
|
||||||
(46 downTo 12).filter { it % 2 == 0 }.forEach {
|
header = getString(R.string.settings_clock_text_size_title),
|
||||||
dialog.addItem("${it}sp", it.toFloat())
|
onItemSelected = {value ->
|
||||||
}
|
if (value != null) Preferences.clockTextSize = value
|
||||||
dialog.addOnSelectItemListener { value ->
|
}
|
||||||
Preferences.clockTextSize = value
|
).show()
|
||||||
}.show()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.actionAltTimezoneClock.setOnClickListener {
|
binding.actionAltTimezoneClock.setOnClickListener {
|
||||||
|
@ -102,15 +102,7 @@ class GesturesFragment : Fragment() {
|
|||||||
it == IntentHelper.DO_NOTHING_OPTION -> getString(R.string.gestures_do_nothing)
|
it == IntentHelper.DO_NOTHING_OPTION -> getString(R.string.gestures_do_nothing)
|
||||||
it == IntentHelper.REFRESH_WIDGET_OPTION -> getString(R.string.gestures_refresh_widget)
|
it == IntentHelper.REFRESH_WIDGET_OPTION -> getString(R.string.gestures_refresh_widget)
|
||||||
it != IntentHelper.DEFAULT_OPTION -> it
|
it != IntentHelper.DEFAULT_OPTION -> it
|
||||||
else -> {
|
else -> getString(R.string.default_calendar_app)
|
||||||
if (IntentHelper.getCalendarIntent(requireContext()).isDefaultSet(requireContext())) {
|
|
||||||
getString(
|
|
||||||
R.string.default_calendar_app
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
getString(R.string.gestures_do_nothing)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -127,15 +119,7 @@ class GesturesFragment : Fragment() {
|
|||||||
it == IntentHelper.DO_NOTHING_OPTION -> getString(R.string.gestures_do_nothing)
|
it == IntentHelper.DO_NOTHING_OPTION -> getString(R.string.gestures_do_nothing)
|
||||||
it == IntentHelper.REFRESH_WIDGET_OPTION -> getString(R.string.gestures_refresh_widget)
|
it == IntentHelper.REFRESH_WIDGET_OPTION -> getString(R.string.gestures_refresh_widget)
|
||||||
it != IntentHelper.DEFAULT_OPTION -> it
|
it != IntentHelper.DEFAULT_OPTION -> it
|
||||||
else -> {
|
else -> getString(R.string.default_clock_app)
|
||||||
if (IntentHelper.getClockIntent(requireContext()).isDefaultSet(requireContext())) {
|
|
||||||
getString(
|
|
||||||
R.string.default_clock_app
|
|
||||||
)
|
|
||||||
} else {
|
|
||||||
getString(R.string.gestures_do_nothing)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -173,9 +157,12 @@ class GesturesFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
binding.actionCalendarApp.setOnClickListener {
|
binding.actionCalendarApp.setOnClickListener {
|
||||||
startActivityForResult(Intent(requireContext(), ChooseApplicationActivity::class.java).apply {
|
startActivityForResult(
|
||||||
putExtra(Constants.RESULT_APP_PACKAGE, Preferences.calendarAppPackage)
|
Intent(requireContext(), ChooseApplicationActivity::class.java).apply {
|
||||||
}, RequestCode.CALENDAR_APP_REQUEST_CODE.code)
|
putExtra(Constants.RESULT_APP_PACKAGE, Preferences.calendarAppPackage)
|
||||||
|
},
|
||||||
|
RequestCode.CALENDAR_APP_REQUEST_CODE.code
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.actionClockApp.setOnClickListener {
|
binding.actionClockApp.setOnClickListener {
|
||||||
|
@ -293,6 +293,25 @@ class GlanceTabFragment : Fragment() {
|
|||||||
if (!(isVisible && hasError)) View.VISIBLE else View.GONE
|
if (!(isVisible && hasError)) View.VISIBLE else View.GONE
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
isVisible =
|
||||||
|
Preferences.showWeatherAsGlanceProvider
|
||||||
|
val hasError = !Preferences.showWeather || (Preferences.weatherProviderError != "" && Preferences.weatherProviderError != "-") || Preferences.weatherProviderLocationError != ""
|
||||||
|
injector.text(
|
||||||
|
R.id.label,
|
||||||
|
if (isVisible && !hasError) getString(R.string.settings_visible) else getString(
|
||||||
|
R.string.settings_not_visible
|
||||||
|
)
|
||||||
|
)
|
||||||
|
injector.visibility(
|
||||||
|
R.id.error_icon,
|
||||||
|
if (isVisible && hasError) View.VISIBLE else View.GONE
|
||||||
|
)
|
||||||
|
injector.visibility(
|
||||||
|
R.id.info_icon,
|
||||||
|
if (!(isVisible && hasError)) View.VISIBLE else View.GONE
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
injector.alpha(R.id.title, if (isVisible) 1f else .25f)
|
injector.alpha(R.id.title, if (isVisible) 1f else .25f)
|
||||||
|
@ -86,6 +86,28 @@ class LayoutFragment : Fragment() {
|
|||||||
viewModel: MainViewModel
|
viewModel: MainViewModel
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
viewModel.widgetMargin.observe(viewLifecycleOwner) {
|
||||||
|
maintainScrollPosition {
|
||||||
|
binding.widgetMarginLabel.text = when (it) {
|
||||||
|
Constants.Dimension.NONE.rawValue -> getString(R.string.settings_widget_dim_none)
|
||||||
|
Constants.Dimension.SMALL.rawValue -> getString(R.string.settings_widget_dim_small)
|
||||||
|
Constants.Dimension.LARGE.rawValue -> getString(R.string.settings_widget_dim_large)
|
||||||
|
else -> getString(R.string.settings_widget_dim_medium)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
viewModel.widgetPadding.observe(viewLifecycleOwner) {
|
||||||
|
maintainScrollPosition {
|
||||||
|
binding.widgetPaddingLabel.text = when (it) {
|
||||||
|
Constants.Dimension.NONE.rawValue -> getString(R.string.settings_widget_dim_none)
|
||||||
|
Constants.Dimension.SMALL.rawValue -> getString(R.string.settings_widget_dim_small)
|
||||||
|
Constants.Dimension.LARGE.rawValue -> getString(R.string.settings_widget_dim_large)
|
||||||
|
else -> getString(R.string.settings_widget_dim_medium)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
viewModel.secondRowTopMargin.observe(viewLifecycleOwner) {
|
viewModel.secondRowTopMargin.observe(viewLifecycleOwner) {
|
||||||
maintainScrollPosition {
|
maintainScrollPosition {
|
||||||
binding.secondRowTopMarginLabel.text = when (it) {
|
binding.secondRowTopMarginLabel.text = when (it) {
|
||||||
@ -147,6 +169,58 @@ class LayoutFragment : Fragment() {
|
|||||||
|
|
||||||
private fun setupListener() {
|
private fun setupListener() {
|
||||||
|
|
||||||
|
binding.actionWidgetMargin.setOnClickListener {
|
||||||
|
BottomSheetMenu<Float>(
|
||||||
|
requireContext(),
|
||||||
|
header = getString(R.string.settings_widget_margin_title)
|
||||||
|
).setSelectedValue(Preferences.widgetMargin)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_none),
|
||||||
|
Constants.Dimension.NONE.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_small),
|
||||||
|
Constants.Dimension.SMALL.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_medium),
|
||||||
|
Constants.Dimension.MEDIUM.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_large),
|
||||||
|
Constants.Dimension.LARGE.rawValue
|
||||||
|
)
|
||||||
|
.addOnSelectItemListener { value ->
|
||||||
|
Preferences.widgetMargin = value
|
||||||
|
}.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.actionWidgetPadding.setOnClickListener {
|
||||||
|
BottomSheetMenu<Float>(
|
||||||
|
requireContext(),
|
||||||
|
header = getString(R.string.settings_widget_padding_title)
|
||||||
|
).setSelectedValue(Preferences.widgetPadding)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_none),
|
||||||
|
Constants.Dimension.NONE.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_small),
|
||||||
|
Constants.Dimension.SMALL.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_medium),
|
||||||
|
Constants.Dimension.MEDIUM.rawValue
|
||||||
|
)
|
||||||
|
.addItem(
|
||||||
|
getString(R.string.settings_widget_dim_large),
|
||||||
|
Constants.Dimension.LARGE.rawValue
|
||||||
|
)
|
||||||
|
.addOnSelectItemListener { value ->
|
||||||
|
Preferences.widgetPadding = value
|
||||||
|
}.show()
|
||||||
|
}
|
||||||
|
|
||||||
binding.actionSecondRowTopMarginSize.setOnClickListener {
|
binding.actionSecondRowTopMarginSize.setOnClickListener {
|
||||||
BottomSheetMenu<Int>(
|
BottomSheetMenu<Int>(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
|
@ -23,6 +23,7 @@ import com.tommasoberlose.anotherwidget.components.MaterialBottomSheetDialog
|
|||||||
import com.tommasoberlose.anotherwidget.databinding.FragmentPreferencesBinding
|
import com.tommasoberlose.anotherwidget.databinding.FragmentPreferencesBinding
|
||||||
import com.tommasoberlose.anotherwidget.global.Preferences
|
import com.tommasoberlose.anotherwidget.global.Preferences
|
||||||
import com.tommasoberlose.anotherwidget.helpers.CalendarHelper
|
import com.tommasoberlose.anotherwidget.helpers.CalendarHelper
|
||||||
|
import com.tommasoberlose.anotherwidget.receivers.UpdatesReceiver
|
||||||
import com.tommasoberlose.anotherwidget.receivers.WeatherReceiver
|
import com.tommasoberlose.anotherwidget.receivers.WeatherReceiver
|
||||||
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
import com.tommasoberlose.anotherwidget.ui.activities.MainActivity
|
||||||
import com.tommasoberlose.anotherwidget.ui.viewmodels.MainViewModel
|
import com.tommasoberlose.anotherwidget.ui.viewmodels.MainViewModel
|
||||||
@ -123,6 +124,7 @@ class PreferencesFragment : Fragment() {
|
|||||||
requireCalendarPermission()
|
requireCalendarPermission()
|
||||||
} else {
|
} else {
|
||||||
Preferences.showEvents = enabled
|
Preferences.showEvents = enabled
|
||||||
|
UpdatesReceiver.removeUpdates(requireContext())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,6 +135,8 @@ class PreferencesFragment : Fragment() {
|
|||||||
binding.showWeatherSwitch.setOnCheckedChangeListener { _, enabled: Boolean ->
|
binding.showWeatherSwitch.setOnCheckedChangeListener { _, enabled: Boolean ->
|
||||||
Preferences.showWeather = enabled
|
Preferences.showWeather = enabled
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
|
Preferences.weatherProviderError = ""
|
||||||
|
Preferences.weatherProviderLocationError = ""
|
||||||
WeatherReceiver.setUpdates(requireContext())
|
WeatherReceiver.setUpdates(requireContext())
|
||||||
} else {
|
} else {
|
||||||
WeatherReceiver.removeUpdates(requireContext())
|
WeatherReceiver.removeUpdates(requireContext())
|
||||||
|
@ -276,7 +276,7 @@ class TypographyFragment : Fragment() {
|
|||||||
Intent(requireContext(), CustomFontActivity::class.java),
|
Intent(requireContext(), CustomFontActivity::class.java),
|
||||||
RequestCode.CUSTOM_FONT_CHOOSER_REQUEST_CODE.code
|
RequestCode.CUSTOM_FONT_CHOOSER_REQUEST_CODE.code
|
||||||
)
|
)
|
||||||
} else if (value != Constants.CUSTOM_FONT_DOWNLOADED) {
|
} else if (value != Preferences.customFont) {
|
||||||
Preferences.bulk {
|
Preferences.bulk {
|
||||||
customFont = value
|
customFont = value
|
||||||
customFontFile = ""
|
customFontFile = ""
|
||||||
@ -317,6 +317,17 @@ class TypographyFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
|
||||||
|
if (resultCode == android.app.Activity.RESULT_OK) {
|
||||||
|
when (requestCode) {
|
||||||
|
RequestCode.CUSTOM_FONT_CHOOSER_REQUEST_CODE.code -> {
|
||||||
|
com.tommasoberlose.anotherwidget.ui.widgets.MainWidget.updateWidget(requireContext())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
super.onActivityResult(requestCode, resultCode, data)
|
||||||
|
}
|
||||||
|
|
||||||
private fun maintainScrollPosition(callback: () -> Unit) {
|
private fun maintainScrollPosition(callback: () -> Unit) {
|
||||||
binding.scrollView.isScrollable = false
|
binding.scrollView.isScrollable = false
|
||||||
callback.invoke()
|
callback.invoke()
|
||||||
|
@ -91,16 +91,17 @@ class WeatherFragment : Fragment() {
|
|||||||
viewModel.weatherProvider.observe(viewLifecycleOwner) {
|
viewModel.weatherProvider.observe(viewLifecycleOwner) {
|
||||||
maintainScrollPosition {
|
maintainScrollPosition {
|
||||||
binding.labelWeatherProvider.text = WeatherHelper.getProviderName(requireContext(), Constants.WeatherProvider.fromInt(it)!!)
|
binding.labelWeatherProvider.text = WeatherHelper.getProviderName(requireContext(), Constants.WeatherProvider.fromInt(it)!!)
|
||||||
checkWeatherProviderConfig()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.weatherProviderError.observe(viewLifecycleOwner) {
|
viewModel.weatherProviderError.observe(viewLifecycleOwner) {
|
||||||
checkWeatherProviderConfig()
|
checkWeatherProviderConfig()
|
||||||
|
checkLocationPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.weatherProviderLocationError.observe(viewLifecycleOwner) {
|
viewModel.weatherProviderLocationError.observe(viewLifecycleOwner) {
|
||||||
checkWeatherProviderConfig()
|
checkWeatherProviderConfig()
|
||||||
|
checkLocationPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.customLocationAdd.observe(viewLifecycleOwner) {
|
viewModel.customLocationAdd.observe(viewLifecycleOwner) {
|
||||||
@ -108,6 +109,7 @@ class WeatherFragment : Fragment() {
|
|||||||
binding.labelCustomLocation.text =
|
binding.labelCustomLocation.text =
|
||||||
if (it == "") getString(R.string.custom_location_gps) else it
|
if (it == "") getString(R.string.custom_location_gps) else it
|
||||||
}
|
}
|
||||||
|
checkWeatherProviderConfig()
|
||||||
checkLocationPermission()
|
checkLocationPermission()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -116,43 +118,50 @@ class WeatherFragment : Fragment() {
|
|||||||
binding.tempUnit.text =
|
binding.tempUnit.text =
|
||||||
if (it == "F") getString(R.string.fahrenheit) else getString(R.string.celsius)
|
if (it == "F") getString(R.string.fahrenheit) else getString(R.string.celsius)
|
||||||
}
|
}
|
||||||
checkLocationPermission()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.weatherRefreshPeriod.observe(viewLifecycleOwner) {
|
viewModel.weatherRefreshPeriod.observe(viewLifecycleOwner) {
|
||||||
maintainScrollPosition {
|
maintainScrollPosition {
|
||||||
binding.labelWeatherRefreshPeriod.text = getString(SettingsStringHelper.getRefreshPeriodString(it))
|
binding.labelWeatherRefreshPeriod.text = getString(SettingsStringHelper.getRefreshPeriodString(it))
|
||||||
}
|
}
|
||||||
checkLocationPermission()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.weatherIconPack.observe(viewLifecycleOwner) {
|
viewModel.weatherIconPack.observe(viewLifecycleOwner) {
|
||||||
maintainScrollPosition {
|
maintainScrollPosition {
|
||||||
binding.labelWeatherIconPack.text = getString(R.string.settings_weather_icon_pack_default).format((it + 1))
|
binding.labelWeatherIconPack.text = getString(R.string.settings_weather_icon_pack_default).format((it + 1))
|
||||||
}
|
}
|
||||||
checkLocationPermission()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun checkLocationPermission() {
|
private fun checkLocationPermission() {
|
||||||
if (requireActivity().checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION)) {
|
if (requireActivity().checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION) &&
|
||||||
|
(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.R ||
|
||||||
|
requireActivity().checkGrantedPermission(Manifest.permission.ACCESS_BACKGROUND_LOCATION))
|
||||||
|
) {
|
||||||
binding.locationPermissionAlert.isVisible = false
|
binding.locationPermissionAlert.isVisible = false
|
||||||
WeatherReceiver.setUpdates(requireContext())
|
} else if (Preferences.customLocationAdd == "") {
|
||||||
} else if (Preferences.showWeather && Preferences.customLocationAdd == "") {
|
|
||||||
binding.locationPermissionAlert.isVisible = true
|
binding.locationPermissionAlert.isVisible = true
|
||||||
binding.locationPermissionAlert.setOnClickListener {
|
binding.locationPermissionAlert.setOnClickListener {
|
||||||
requirePermission()
|
requirePermission()
|
||||||
}
|
}
|
||||||
|
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R &&
|
||||||
|
requireActivity().checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION)
|
||||||
|
) {
|
||||||
|
val text = getString(R.string.action_grant_permission) + " - " +
|
||||||
|
requireContext().packageManager.backgroundPermissionOptionLabel
|
||||||
|
binding.locationPermissionAlert.text = text
|
||||||
|
}
|
||||||
|
binding.weatherProviderLocationError.isVisible = false
|
||||||
} else {
|
} else {
|
||||||
binding.locationPermissionAlert.isVisible = false
|
binding.locationPermissionAlert.isVisible = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun checkWeatherProviderConfig() {
|
private fun checkWeatherProviderConfig() {
|
||||||
binding.weatherProviderError.isVisible = Preferences.showWeather && Preferences.weatherProviderError != "" && Preferences.weatherProviderError != "-"
|
binding.weatherProviderError.isVisible = Preferences.weatherProviderError != "" && Preferences.weatherProviderError != "-"
|
||||||
binding.weatherProviderError.text = Preferences.weatherProviderError
|
binding.weatherProviderError.text = Preferences.weatherProviderError
|
||||||
|
|
||||||
binding.weatherProviderLocationError.isVisible = Preferences.showWeather && Preferences.weatherProviderLocationError != ""
|
binding.weatherProviderLocationError.isVisible = Preferences.weatherProviderLocationError != ""
|
||||||
binding.weatherProviderLocationError.text = Preferences.weatherProviderLocationError
|
binding.weatherProviderLocationError.text = Preferences.weatherProviderLocationError
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -177,11 +186,11 @@ class WeatherFragment : Fragment() {
|
|||||||
.addItem(getString(R.string.celsius), "C")
|
.addItem(getString(R.string.celsius), "C")
|
||||||
.addOnSelectItemListener { value ->
|
.addOnSelectItemListener { value ->
|
||||||
if (value != Preferences.weatherTempUnit) {
|
if (value != Preferences.weatherTempUnit) {
|
||||||
|
Preferences.weatherTempUnit = value
|
||||||
viewLifecycleOwner.lifecycleScope.launch {
|
viewLifecycleOwner.lifecycleScope.launch {
|
||||||
WeatherHelper.updateWeather(requireContext())
|
WeatherHelper.updateWeather(requireContext())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Preferences.weatherTempUnit = value
|
|
||||||
}.show()
|
}.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -193,7 +202,10 @@ class WeatherFragment : Fragment() {
|
|||||||
}
|
}
|
||||||
dialog
|
dialog
|
||||||
.addOnSelectItemListener { value ->
|
.addOnSelectItemListener { value ->
|
||||||
Preferences.weatherRefreshPeriod = value
|
if (value != Preferences.weatherRefreshPeriod) {
|
||||||
|
Preferences.weatherRefreshPeriod = value
|
||||||
|
WeatherReceiver.setUpdates(requireContext())
|
||||||
|
}
|
||||||
}.show()
|
}.show()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -206,12 +218,12 @@ class WeatherFragment : Fragment() {
|
|||||||
if (resultCode == Activity.RESULT_OK) {
|
if (resultCode == Activity.RESULT_OK) {
|
||||||
when (requestCode) {
|
when (requestCode) {
|
||||||
Constants.RESULT_CODE_CUSTOM_LOCATION -> {
|
Constants.RESULT_CODE_CUSTOM_LOCATION -> {
|
||||||
WeatherReceiver.setUpdates(requireContext())
|
viewLifecycleOwner.lifecycleScope.launch {
|
||||||
checkLocationPermission()
|
WeatherHelper.updateWeather(requireContext())
|
||||||
}
|
}
|
||||||
RequestCode.WEATHER_PROVIDER_REQUEST_CODE.code -> {
|
|
||||||
checkLocationPermission()
|
|
||||||
}
|
}
|
||||||
|
//RequestCode.WEATHER_PROVIDER_REQUEST_CODE.code -> {
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
super.onActivityResult(requestCode, resultCode, data)
|
super.onActivityResult(requestCode, resultCode, data)
|
||||||
@ -220,12 +232,19 @@ class WeatherFragment : Fragment() {
|
|||||||
private fun requirePermission() {
|
private fun requirePermission() {
|
||||||
Dexter.withContext(requireContext())
|
Dexter.withContext(requireContext())
|
||||||
.withPermissions(
|
.withPermissions(
|
||||||
Manifest.permission.ACCESS_FINE_LOCATION
|
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R &&
|
||||||
|
requireActivity().checkGrantedPermission(Manifest.permission.ACCESS_FINE_LOCATION))
|
||||||
|
Manifest.permission.ACCESS_BACKGROUND_LOCATION
|
||||||
|
else
|
||||||
|
Manifest.permission.ACCESS_FINE_LOCATION
|
||||||
).withListener(object: MultiplePermissionsListener {
|
).withListener(object: MultiplePermissionsListener {
|
||||||
override fun onPermissionsChecked(report: MultiplePermissionsReport?) {
|
override fun onPermissionsChecked(report: MultiplePermissionsReport?) {
|
||||||
report?.let {
|
report?.let {
|
||||||
if (report.areAllPermissionsGranted()){
|
if (report.areAllPermissionsGranted()) {
|
||||||
checkLocationPermission()
|
checkLocationPermission()
|
||||||
|
viewLifecycleOwner.lifecycleScope.launch {
|
||||||
|
WeatherHelper.updateWeather(requireContext())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,6 +50,8 @@ class MainViewModel(context: Application) : AndroidViewModel(context) {
|
|||||||
val showDividers = Preferences.asLiveData(Preferences::showDividers)
|
val showDividers = Preferences.asLiveData(Preferences::showDividers)
|
||||||
val secondRowTopMargin = Preferences.asLiveData(Preferences::secondRowTopMargin)
|
val secondRowTopMargin = Preferences.asLiveData(Preferences::secondRowTopMargin)
|
||||||
val widgetAlign = Preferences.asLiveData(Preferences::widgetAlign)
|
val widgetAlign = Preferences.asLiveData(Preferences::widgetAlign)
|
||||||
|
val widgetMargin = Preferences.asLiveData(Preferences::widgetMargin)
|
||||||
|
val widgetPadding = Preferences.asLiveData(Preferences::widgetPadding)
|
||||||
|
|
||||||
// Calendar Settings
|
// Calendar Settings
|
||||||
val showEvents = Preferences.asLiveData(Preferences::showEvents)
|
val showEvents = Preferences.asLiveData(Preferences::showEvents)
|
||||||
@ -102,7 +104,8 @@ class MainViewModel(context: Application) : AndroidViewModel(context) {
|
|||||||
|
|
||||||
// UI
|
// UI
|
||||||
val fragmentScrollY = MutableLiveData<Int>()
|
val fragmentScrollY = MutableLiveData<Int>()
|
||||||
val clockPreferencesUpdate = MediatorLiveData<Boolean>().apply {
|
val widgetPreferencesUpdate = MediatorLiveData<Boolean>().apply {
|
||||||
|
addSource(Preferences.asLiveData(Preferences::showClock)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::clockTextSize)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::clockTextSize)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::clockTextColor)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::clockTextColor)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::clockTextAlpha)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::clockTextAlpha)) { value = true }
|
||||||
@ -111,8 +114,6 @@ class MainViewModel(context: Application) : AndroidViewModel(context) {
|
|||||||
addSource(Preferences.asLiveData(Preferences::showAMPMIndicator)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::showAMPMIndicator)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::clockBottomMargin)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::clockBottomMargin)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::altTimezoneLabel)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::altTimezoneLabel)) { value = true }
|
||||||
}
|
|
||||||
val widgetPreferencesUpdate = MediatorLiveData<Boolean>().apply {
|
|
||||||
addSource(Preferences.asLiveData(Preferences::textGlobalColor)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::textGlobalColor)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::textGlobalAlpha)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::textGlobalAlpha)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::textSecondaryColor)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::textSecondaryColor)) { value = true }
|
||||||
@ -136,6 +137,8 @@ class MainViewModel(context: Application) : AndroidViewModel(context) {
|
|||||||
addSource(Preferences.asLiveData(Preferences::customFontVariant)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::customFontVariant)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::secondRowInformation)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::secondRowInformation)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::widgetAlign)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::widgetAlign)) { value = true }
|
||||||
|
addSource(Preferences.asLiveData(Preferences::widgetMargin)) { value = true }
|
||||||
|
addSource(Preferences.asLiveData(Preferences::widgetPadding)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::showDividers)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::showDividers)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::secondRowTopMargin)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::secondRowTopMargin)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::isDateCapitalize)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::isDateCapitalize)) { value = true }
|
||||||
@ -171,6 +174,7 @@ class MainViewModel(context: Application) : AndroidViewModel(context) {
|
|||||||
addSource(Preferences.asLiveData(Preferences::musicPlayersFilter)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::musicPlayersFilter)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::appNotificationsFilter)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::appNotificationsFilter)) { value = true }
|
||||||
addSource(Preferences.asLiveData(Preferences::showEventsAsGlanceProvider)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::showEventsAsGlanceProvider)) { value = true }
|
||||||
|
addSource(Preferences.asLiveData(Preferences::showWeatherAsGlanceProvider)) { value = true }
|
||||||
|
|
||||||
addSource(Preferences.asLiveData(Preferences::installedIntegrations)) { value = true }
|
addSource(Preferences.asLiveData(Preferences::installedIntegrations)) { value = true }
|
||||||
}
|
}
|
||||||
|
@ -54,13 +54,19 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
"setImageAlpha",
|
"setImageAlpha",
|
||||||
ColorHelper.getBackgroundAlpha(context.isDarkTheme())
|
ColorHelper.getBackgroundAlpha(context.isDarkTheme())
|
||||||
)
|
)
|
||||||
val refreshIntent = PendingIntent.getActivity(
|
val margin = Preferences.widgetMargin.convertDpToPixel(context).toInt()
|
||||||
|
views.setViewPadding(R.id.widget_shape_background, margin, margin, margin, margin)
|
||||||
|
val refreshIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
appWidgetId,
|
appWidgetId,
|
||||||
IntentHelper.getWidgetUpdateIntent(context),
|
IntentHelper.getWidgetUpdateIntent(context),
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.widget_shape_background, refreshIntent)
|
views.setOnClickPendingIntent(R.id.widget_shape_background, refreshIntent)
|
||||||
|
|
||||||
|
// Padding
|
||||||
|
val padding = (Preferences.widgetPadding.convertDpToPixel(context) + Preferences.widgetMargin.convertDpToPixel(context)).toInt()
|
||||||
|
views.setViewPadding(R.id.main_layout, padding, padding, padding, padding)
|
||||||
} catch (ex: Exception) {
|
} catch (ex: Exception) {
|
||||||
ex.printStackTrace()
|
ex.printStackTrace()
|
||||||
CrashlyticsReceiver.sendCrash(context, ex)
|
CrashlyticsReceiver.sendCrash(context, ex)
|
||||||
@ -73,9 +79,10 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
try {
|
try {
|
||||||
val generatedBinding = generateWidgetView(typeface) ?: return null
|
val generatedBinding = generateWidgetView(typeface) ?: return null
|
||||||
|
|
||||||
|
val width = w - (Preferences.widgetPadding.convertDpToPixel(context) + Preferences.widgetMargin.convertDpToPixel(context)).toInt() * 2
|
||||||
views.setImageViewBitmap(
|
views.setImageViewBitmap(
|
||||||
R.id.bitmap_container,
|
R.id.bitmap_container,
|
||||||
BitmapHelper.getBitmapFromView(generatedBinding.root, width = w)
|
BitmapHelper.getBitmapFromView(generatedBinding.root, width)
|
||||||
)
|
)
|
||||||
views = updateGridView(generatedBinding, views, appWidgetId)
|
views = updateGridView(generatedBinding, views, appWidgetId)
|
||||||
} catch (ex: Exception) {
|
} catch (ex: Exception) {
|
||||||
@ -96,7 +103,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
// Weather
|
// Weather
|
||||||
if (Preferences.showWeather && Preferences.weatherIcon != "") {
|
if (Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
views.setViewVisibility(R.id.weather_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.weather_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line, View.GONE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, View.GONE)
|
||||||
|
|
||||||
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
||||||
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
||||||
@ -116,7 +123,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
views.setViewVisibility(R.id.weather_rect, View.GONE)
|
views.setViewVisibility(R.id.weather_rect, View.GONE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line, View.GONE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, View.GONE)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -126,7 +133,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
BitmapHelper.getBitmapFromView(bindingView.date, draw = false, width = bindingView.date.width, height = bindingView.date.height)
|
BitmapHelper.getBitmapFromView(bindingView.date, draw = false, width = bindingView.date.width, height = bindingView.date.height)
|
||||||
)
|
)
|
||||||
|
|
||||||
val calPIntent = PendingIntent.getActivity(
|
val calPIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getCalendarIntent(context),
|
IntentHelper.getCalendarIntent(context),
|
||||||
@ -135,8 +142,6 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
views.setOnClickPendingIntent(R.id.date_rect, calPIntent)
|
views.setOnClickPendingIntent(R.id.date_rect, calPIntent)
|
||||||
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
||||||
|
|
||||||
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
|
||||||
|
|
||||||
// Spacing
|
// Spacing
|
||||||
views.setViewVisibility(
|
views.setViewVisibility(
|
||||||
R.id.sub_line_top_margin_small_sans,
|
R.id.sub_line_top_margin_small_sans,
|
||||||
@ -179,7 +184,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Event intent
|
// Event intent
|
||||||
val eventIntent = PendingIntent.getActivity(
|
val eventIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(context, nextEvent),
|
IntentHelper.getEventIntent(context, nextEvent),
|
||||||
@ -216,7 +221,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
// Event information
|
// Event information
|
||||||
if (nextEvent.address != "" && Preferences.secondRowInformation == 1) {
|
if (nextEvent.address != "" && Preferences.secondRowInformation == 1) {
|
||||||
val mapIntent = PendingIntent.getActivity(
|
val mapIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getGoogleMapsIntentFromAddress(context, nextEvent.address),
|
IntentHelper.getGoogleMapsIntentFromAddress(context, nextEvent.address),
|
||||||
@ -224,14 +229,10 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, mapIntent)
|
views.setOnClickPendingIntent(R.id.sub_line_rect, mapIntent)
|
||||||
} else {
|
} else {
|
||||||
val pIntentDetail = PendingIntent.getActivity(
|
val pIntentDetail = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(
|
IntentHelper.getCalendarIntent(context, nextEvent.startDate),
|
||||||
context,
|
|
||||||
nextEvent,
|
|
||||||
forceEventDetails = true
|
|
||||||
),
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, pIntentDetail)
|
views.setOnClickPendingIntent(R.id.sub_line_rect, pIntentDetail)
|
||||||
@ -239,19 +240,16 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
views.setViewVisibility(R.id.calendar_layout_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.calendar_layout_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, if (Preferences.showWeather && Preferences.weatherIcon != "") View.VISIBLE else View.GONE)
|
||||||
views.setViewVisibility(R.id.first_line_rect, View.GONE)
|
views.setViewVisibility(R.id.first_line_rect, View.GONE)
|
||||||
|
|
||||||
views.setViewVisibility(R.id.sub_line_top_margin_small_sans, View.GONE)
|
|
||||||
views.setViewVisibility(R.id.sub_line_top_margin_medium_sans, View.GONE)
|
|
||||||
views.setViewVisibility(R.id.sub_line_top_margin_large_sans, View.GONE)
|
|
||||||
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
||||||
var showSomething = false
|
var showSomething = false
|
||||||
|
var isWeatherShown = false
|
||||||
loop@ for (provider: Constants.GlanceProviderId in GlanceProviderHelper.getGlanceProviders(context)) {
|
loop@ for (provider: Constants.GlanceProviderId in GlanceProviderHelper.getGlanceProviders(context)) {
|
||||||
when (provider) {
|
when (provider) {
|
||||||
Constants.GlanceProviderId.PLAYING_SONG -> {
|
Constants.GlanceProviderId.PLAYING_SONG -> {
|
||||||
if (MediaPlayerHelper.isSomeonePlaying(context)) {
|
if (MediaPlayerHelper.isSomeonePlaying(context)) {
|
||||||
val musicIntent = PendingIntent.getActivity(
|
val musicIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getMusicIntent(context),
|
IntentHelper.getMusicIntent(context),
|
||||||
@ -263,23 +261,26 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
||||||
if (Preferences.showNextAlarm && nextAlarm != "") {
|
if (Preferences.showNextAlarm) {
|
||||||
val alarmIntent = PendingIntent.getActivity(
|
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
||||||
context,
|
if (nextAlarm != "") {
|
||||||
widgetID,
|
val alarmIntent = IntentHelper.getPendingIntent(
|
||||||
IntentHelper.getClockIntent(context),
|
context,
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
widgetID,
|
||||||
)
|
IntentHelper.getClockIntent(context),
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, alarmIntent)
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
showSomething = true
|
)
|
||||||
break@loop
|
views.setOnClickPendingIntent(R.id.sub_line_rect, alarmIntent)
|
||||||
|
showSomething = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
||||||
if (Preferences.showBatteryCharging) {
|
if (Preferences.showBatteryCharging) {
|
||||||
BatteryHelper.updateBatteryInfo(context)
|
BatteryHelper.updateBatteryInfo(context)
|
||||||
if (Preferences.isCharging || Preferences.isBatteryLevelLow) {
|
if (Preferences.isCharging || Preferences.isBatteryLevelLow) {
|
||||||
val batteryIntent = PendingIntent.getActivity(
|
val batteryIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getBatteryIntent(),
|
IntentHelper.getBatteryIntent(),
|
||||||
@ -293,12 +294,13 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
Constants.GlanceProviderId.CUSTOM_INFO -> {
|
Constants.GlanceProviderId.CUSTOM_INFO -> {
|
||||||
if (Preferences.customNotes.isNotEmpty()) {
|
if (Preferences.customNotes.isNotEmpty()) {
|
||||||
|
showSomething = true
|
||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.GOOGLE_FIT_STEPS -> {
|
Constants.GlanceProviderId.GOOGLE_FIT_STEPS -> {
|
||||||
if (Preferences.showDailySteps && Preferences.googleFitSteps > 0) {
|
if (Preferences.showDailySteps && Preferences.googleFitSteps > 0) {
|
||||||
val fitIntent = PendingIntent.getActivity(
|
val fitIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getFitIntent(context),
|
IntentHelper.getFitIntent(context),
|
||||||
@ -319,7 +321,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
remotePackageContext,
|
remotePackageContext,
|
||||||
Preferences.lastNotificationIcon)
|
Preferences.lastNotificationIcon)
|
||||||
}
|
}
|
||||||
val notificationIntent = PendingIntent.getActivity(
|
val notificationIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getNotificationIntent(context),
|
IntentHelper.getNotificationIntent(context),
|
||||||
@ -343,7 +345,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
Constants.GlanceProviderId.EVENTS -> {
|
Constants.GlanceProviderId.EVENTS -> {
|
||||||
if (Preferences.showEventsAsGlanceProvider&& Preferences.showEvents && context.checkGrantedPermission(
|
if (Preferences.showEventsAsGlanceProvider&& Preferences.showEvents && context.checkGrantedPermission(
|
||||||
Manifest.permission.READ_CALENDAR) && nextEvent != null) {
|
Manifest.permission.READ_CALENDAR) && nextEvent != null) {
|
||||||
val pIntentDetail = PendingIntent.getActivity(
|
val pIntentDetail = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(
|
IntentHelper.getEventIntent(
|
||||||
@ -361,13 +363,29 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
if (Preferences.showWeatherAsGlanceProvider && Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
|
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
||||||
|
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
||||||
|
val weatherPIntent = PendingIntent.getBroadcast(context, widgetID, i, 0)
|
||||||
|
|
||||||
|
views.setOnClickPendingIntent(
|
||||||
|
R.id.sub_line_rect,
|
||||||
|
weatherPIntent
|
||||||
|
)
|
||||||
|
|
||||||
|
showSomething = true
|
||||||
|
isWeatherShown = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (showSomething) {
|
if (showSomething) {
|
||||||
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.weather_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.weather_rect, if (isWeatherShown) View.GONE else View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
||||||
|
|
||||||
views.setViewVisibility(R.id.calendar_layout_rect, View.GONE)
|
views.setViewVisibility(R.id.calendar_layout_rect, View.GONE)
|
||||||
@ -406,8 +424,9 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
|
|
||||||
// Generates the widget bitmap from the view
|
// Generates the widget bitmap from the view
|
||||||
fun generateWidgetView(typeface: Typeface? = null): LeftAlignedWidgetBinding? {
|
private fun generateWidgetView(typeface: Typeface? = null): LeftAlignedWidgetBinding? {
|
||||||
try {
|
try {
|
||||||
|
var isWeatherShownAsGlanceProvider = false
|
||||||
val eventRepository = EventRepository(context)
|
val eventRepository = EventRepository(context)
|
||||||
val nextEvent = eventRepository.getNextEvent()
|
val nextEvent = eventRepository.getNextEvent()
|
||||||
val eventsCount = eventRepository.getEventsCount()
|
val eventsCount = eventRepository.getEventsCount()
|
||||||
@ -461,8 +480,6 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
bindingView.date.text = DateHelper.getDateText(context, now)
|
bindingView.date.text = DateHelper.getDateText(context, now)
|
||||||
|
|
||||||
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
|
||||||
|
|
||||||
if (Preferences.showEvents && context.checkGrantedPermission(Manifest.permission.READ_CALENDAR) && nextEvent != null && !Preferences.showEventsAsGlanceProvider) {
|
if (Preferences.showEvents && context.checkGrantedPermission(Manifest.permission.READ_CALENDAR) && nextEvent != null && !Preferences.showEventsAsGlanceProvider) {
|
||||||
// Multiple counter
|
// Multiple counter
|
||||||
bindingView.actionNext.isVisible =
|
bindingView.actionNext.isVisible =
|
||||||
@ -563,18 +580,16 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
val flags: Int =
|
|
||||||
DateUtils.FORMAT_SHOW_DATE or DateUtils.FORMAT_NO_YEAR or DateUtils.FORMAT_ABBREV_MONTH
|
|
||||||
val start = Calendar.getInstance().apply { timeInMillis = nextEvent.startDate }
|
val start = Calendar.getInstance().apply { timeInMillis = nextEvent.startDate }
|
||||||
|
|
||||||
bindingView.subLineText.text = if (now.get(Calendar.DAY_OF_YEAR) == start.get(
|
bindingView.subLineText.text = if (now.get(Calendar.DAY_OF_YEAR) == start.get(
|
||||||
Calendar.DAY_OF_YEAR)) {
|
Calendar.DAY_OF_YEAR)) {
|
||||||
DateUtils.formatDateTime(context, nextEvent.startDate, flags)
|
DateHelper.getDateText(context, start)
|
||||||
} else if (now.get(Calendar.DAY_OF_YEAR) > start.get(Calendar.DAY_OF_YEAR) || now.get(
|
} else if (now.get(Calendar.DAY_OF_YEAR) > start.get(Calendar.DAY_OF_YEAR) || now.get(
|
||||||
Calendar.YEAR) > start.get(Calendar.YEAR)) {
|
Calendar.YEAR) > start.get(Calendar.YEAR)) {
|
||||||
DateUtils.formatDateTime(context, now.timeInMillis, flags)
|
DateHelper.getDateText(context, now)
|
||||||
} else {
|
} else {
|
||||||
DateUtils.formatDateTime(context, nextEvent.startDate, flags)
|
DateHelper.getDateText(context, start)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -582,11 +597,14 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
bindingView.dateLayout.isVisible = false
|
bindingView.dateLayout.isVisible = false
|
||||||
bindingView.calendarLayout.isVisible = true
|
bindingView.calendarLayout.isVisible = true
|
||||||
bindingView.subLine.isVisible = true
|
bindingView.subLine.isVisible = true
|
||||||
bindingView.weatherSubLine.isVisible = true
|
bindingView.weatherSubLine.isVisible = Preferences.showWeather && Preferences.weatherIcon != ""
|
||||||
|
|
||||||
bindingView.subLineTopMarginSmall.visibility = View.GONE
|
bindingView.subLineTopMarginSmall.visibility =
|
||||||
bindingView.subLineTopMarginMedium.visibility = View.GONE
|
if (Preferences.secondRowTopMargin == Constants.SecondRowTopMargin.SMALL.rawValue) View.VISIBLE else View.GONE
|
||||||
bindingView.subLineTopMarginLarge.visibility = View.GONE
|
bindingView.subLineTopMarginMedium.visibility =
|
||||||
|
if (Preferences.secondRowTopMargin == Constants.SecondRowTopMargin.MEDIUM.rawValue) View.VISIBLE else View.GONE
|
||||||
|
bindingView.subLineTopMarginLarge.visibility =
|
||||||
|
if (Preferences.secondRowTopMargin == Constants.SecondRowTopMargin.LARGE.rawValue) View.VISIBLE else View.GONE
|
||||||
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
||||||
bindingView.subLineIcon.isVisible = true
|
bindingView.subLineIcon.isVisible = true
|
||||||
var showSomething = false
|
var showSomething = false
|
||||||
@ -608,16 +626,19 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
||||||
if (Preferences.showNextAlarm && nextAlarm != "") {
|
if (Preferences.showNextAlarm) {
|
||||||
bindingView.subLineIcon.setImageDrawable(
|
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
||||||
ContextCompat.getDrawable(
|
if (nextAlarm != "") {
|
||||||
context,
|
bindingView.subLineIcon.setImageDrawable(
|
||||||
R.drawable.round_alarm_24
|
ContextCompat.getDrawable(
|
||||||
|
context,
|
||||||
|
R.drawable.round_alarm_24
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
bindingView.subLineText.text = nextAlarm
|
||||||
bindingView.subLineText.text = AlarmHelper.getNextAlarm(context)
|
showSomething = true
|
||||||
showSomething = true
|
break@loop
|
||||||
break@loop
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
||||||
@ -721,6 +742,33 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
if (Preferences.showWeatherAsGlanceProvider && Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
|
bindingView.subLineText.text = String.format(
|
||||||
|
Locale.getDefault(),
|
||||||
|
"%d°%s %s",
|
||||||
|
Preferences.weatherTemp.roundToInt(),
|
||||||
|
Preferences.weatherRealTempUnit,
|
||||||
|
WeatherHelper.getWeatherLabel(context, Preferences.weatherIcon)
|
||||||
|
)
|
||||||
|
bindingView.subLineIcon.isVisible = true
|
||||||
|
|
||||||
|
val icon: String = Preferences.weatherIcon
|
||||||
|
if (icon == "") {
|
||||||
|
bindingView.subLineIcon.isVisible = false
|
||||||
|
} else {
|
||||||
|
bindingView.subLineIcon.setImageResource(WeatherHelper.getWeatherIconResource(context, icon))
|
||||||
|
bindingView.subLineIcon.isVisible = true
|
||||||
|
}
|
||||||
|
|
||||||
|
bindingView.weatherDateLine.isVisible = false
|
||||||
|
bindingView.weatherSubLine.isVisible = false
|
||||||
|
|
||||||
|
showSomething = true
|
||||||
|
isWeatherShownAsGlanceProvider = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -772,16 +820,22 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
it.setTextColor(ColorHelper.getSecondaryFontColor(context.applicationContext.isDarkTheme()))
|
it.setTextColor(ColorHelper.getSecondaryFontColor(context.applicationContext.isDarkTheme()))
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Preferences.weatherIconPack != Constants.WeatherIconPack.MINIMAL.rawValue) {
|
if (!isWeatherShownAsGlanceProvider) {
|
||||||
listOf<ImageView>(bindingView.subLineIcon, bindingView.subLineIconShadow)
|
if (Preferences.weatherIconPack != Constants.WeatherIconPack.MINIMAL.rawValue) {
|
||||||
} else {
|
listOf<ImageView>(bindingView.subLineIcon, bindingView.subLineIconShadow)
|
||||||
listOf<ImageView>(bindingView.subLineIcon, bindingView.weatherSubLineWeatherIcon, bindingView.subLineIconShadow)
|
} else {
|
||||||
}.forEach {
|
listOf<ImageView>(
|
||||||
it.setColorFilter(ColorHelper.getSecondaryFontColorRgb(context.applicationContext.isDarkTheme()))
|
bindingView.subLineIcon,
|
||||||
it.alpha =
|
bindingView.weatherSubLineWeatherIcon,
|
||||||
(if (context.isDarkTheme()) Preferences.textSecondaryAlphaDark.toIntValue()
|
bindingView.subLineIconShadow
|
||||||
.toFloat() else Preferences.textSecondaryAlpha.toIntValue()
|
)
|
||||||
.toFloat()) / 100
|
}.forEach {
|
||||||
|
it.setColorFilter(ColorHelper.getSecondaryFontColorRgb(context.applicationContext.isDarkTheme()))
|
||||||
|
it.alpha =
|
||||||
|
(if (context.isDarkTheme()) Preferences.textSecondaryAlphaDark.toIntValue()
|
||||||
|
.toFloat() else Preferences.textSecondaryAlpha.toIntValue()
|
||||||
|
.toFloat()) / 100
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Text Size
|
// Text Size
|
||||||
@ -791,24 +845,30 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
bindingView.nextEvent to Preferences.textMainSize,
|
bindingView.nextEvent to Preferences.textMainSize,
|
||||||
bindingView.nextEventDifferenceTime to Preferences.textMainSize,
|
bindingView.nextEventDifferenceTime to Preferences.textMainSize,
|
||||||
bindingView.subLineText to Preferences.textSecondSize,
|
bindingView.subLineText to Preferences.textSecondSize,
|
||||||
bindingView.weatherSubLineDivider to (Preferences.textSecondSize - 2),
|
bindingView.weatherSubLineDivider to (Preferences.textSecondSize * 0.9f),
|
||||||
bindingView.weatherSubLineTemperature to Preferences.textSecondSize,
|
bindingView.weatherSubLineTemperature to Preferences.textSecondSize,
|
||||||
).forEach {
|
).forEach {
|
||||||
it.first.setTextSize(TypedValue.COMPLEX_UNIT_SP, it.second)
|
it.first.setTextSize(TypedValue.COMPLEX_UNIT_SP, it.second)
|
||||||
|
if (!it.first.includeFontPadding && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.P)
|
||||||
|
it.first.isFallbackLineSpacing = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Icons scale
|
// Icons scale
|
||||||
bindingView.subLineIcon.scaleX = Preferences.textSecondSize / 18f
|
listOf(
|
||||||
bindingView.subLineIcon.scaleY = Preferences.textSecondSize / 18f
|
bindingView.subLineIcon to Preferences.textSecondSize / 16f,
|
||||||
|
bindingView.subLineIconShadow to Preferences.textSecondSize / 16f,
|
||||||
bindingView.weatherSubLineWeatherIcon.scaleX = Preferences.textSecondSize / 18f
|
bindingView.weatherSubLineWeatherIcon to Preferences.textSecondSize / 16f,
|
||||||
bindingView.weatherSubLineWeatherIcon.scaleY = Preferences.textSecondSize / 18f
|
bindingView.weatherDateLineWeatherIcon to ((Preferences.textMainSize + Preferences.textSecondSize) / 2) / 24f,
|
||||||
|
bindingView.actionNext to Preferences.textMainSize / 24f,
|
||||||
bindingView.weatherDateLineWeatherIcon.scaleX = ((Preferences.textMainSize + Preferences.textSecondSize) / 2) / 20f
|
bindingView.actionNextShadow to Preferences.textMainSize / 24f
|
||||||
bindingView.weatherDateLineWeatherIcon.scaleY = ((Preferences.textMainSize + Preferences.textSecondSize) / 2) / 20f
|
).forEach {
|
||||||
|
if (it.first.tag == null)
|
||||||
bindingView.actionNext.scaleX = Preferences.textMainSize / 28f
|
it.first.tag = it.first.layoutParams.height
|
||||||
bindingView.actionNext.scaleY = Preferences.textMainSize / 28f
|
it.first.layoutParams = it.first.layoutParams.apply {
|
||||||
|
height = ((it.first.tag as Int) * it.second).roundToInt()
|
||||||
|
width = height
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Shadows
|
// Shadows
|
||||||
@ -857,7 +917,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
it.second.isVisible = it.first.isVisible
|
it.second.isVisible = it.first.isVisible
|
||||||
it.second.scaleX = it.first.scaleX
|
it.second.scaleX = it.first.scaleX
|
||||||
it.second.scaleY = it.first.scaleY
|
it.second.scaleY = it.first.scaleY
|
||||||
it.second.applyShadow(it.first)
|
it.second.applyShadow(it.first, 0.7f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -876,14 +936,17 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
// Custom Font
|
// Custom Font
|
||||||
if (Preferences.customFont == Constants.CUSTOM_FONT_GOOGLE_SANS) {
|
if (Preferences.customFont == Constants.CUSTOM_FONT_GOOGLE_SANS) {
|
||||||
val googleSans: Typeface = when (Preferences.customFontVariant) {
|
val googleSans: Typeface? = androidx.core.content.res.ResourcesCompat.getFont(
|
||||||
"100" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_thin.ttf")
|
context,
|
||||||
"200" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_light.ttf")
|
when (Preferences.customFontVariant) {
|
||||||
"500" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_medium.ttf")
|
"100" -> R.font.google_sans_thin
|
||||||
"700" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_bold.ttf")
|
"200" -> R.font.google_sans_light
|
||||||
"800" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_black.ttf")
|
"500" -> R.font.google_sans_medium
|
||||||
else -> Typeface.createFromAsset(context.assets, "fonts/google_sans_regular.ttf")
|
"700" -> R.font.google_sans_bold
|
||||||
}
|
"800" -> R.font.google_sans_black
|
||||||
|
else -> R.font.google_sans_regular
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
listOf<TextView>(
|
listOf<TextView>(
|
||||||
bindingView.date,
|
bindingView.date,
|
||||||
@ -912,10 +975,7 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
|
|
||||||
// Dividers
|
// Dividers
|
||||||
arrayOf(bindingView.weatherSubLineDivider).forEach {
|
arrayOf(bindingView.weatherSubLineDivider).forEach {
|
||||||
it.visibility = if (Preferences.showDividers) View.VISIBLE else View.INVISIBLE
|
it.visibility = if (Preferences.showDividers) View.VISIBLE else View.GONE
|
||||||
it.layoutParams = (it.layoutParams as ViewGroup.MarginLayoutParams).apply {
|
|
||||||
this.marginEnd = if (Preferences.showDividers) 8f.convertDpToPixel(context).toInt() else 0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Right Aligned
|
// Right Aligned
|
||||||
@ -925,8 +985,11 @@ class AlignedWidget(val context: Context, val rightAligned: Boolean = false) {
|
|||||||
}
|
}
|
||||||
bindingView.mainContent.gravity = Gravity.END
|
bindingView.mainContent.gravity = Gravity.END
|
||||||
bindingView.dateLayout.gravity = Gravity.END
|
bindingView.dateLayout.gravity = Gravity.END
|
||||||
|
bindingView.date.gravity = Gravity.END
|
||||||
bindingView.calendarLayout.gravity = Gravity.END or Gravity.CENTER_VERTICAL
|
bindingView.calendarLayout.gravity = Gravity.END or Gravity.CENTER_VERTICAL
|
||||||
|
bindingView.nextEvent.gravity = Gravity.END
|
||||||
bindingView.subLineContainer.gravity = Gravity.END or Gravity.CENTER_VERTICAL
|
bindingView.subLineContainer.gravity = Gravity.END or Gravity.CENTER_VERTICAL
|
||||||
|
bindingView.subLineText.gravity = Gravity.END
|
||||||
}
|
}
|
||||||
|
|
||||||
return bindingView
|
return bindingView
|
||||||
|
@ -32,14 +32,14 @@ class ClockWidget(val context: Context) {
|
|||||||
views.setTextViewTextSize(
|
views.setTextViewTextSize(
|
||||||
R.id.time,
|
R.id.time,
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
Preferences.clockTextSize.toPixel(context)
|
Preferences.clockTextSize
|
||||||
)
|
)
|
||||||
views.setTextViewTextSize(
|
views.setTextViewTextSize(
|
||||||
R.id.time_am_pm,
|
R.id.time_am_pm,
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
Preferences.clockTextSize.toPixel(context) / 5 * 2
|
Preferences.clockTextSize / 5 * 2
|
||||||
)
|
)
|
||||||
val clockPIntent = PendingIntent.getActivity(
|
val clockPIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getClockIntent(context),
|
IntentHelper.getClockIntent(context),
|
||||||
@ -80,19 +80,29 @@ class ClockWidget(val context: Context) {
|
|||||||
views.setTextViewTextSize(
|
views.setTextViewTextSize(
|
||||||
R.id.alt_timezone_time,
|
R.id.alt_timezone_time,
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
Preferences.clockTextSize.toPixel(context) / 3
|
Preferences.clockTextSize / 3
|
||||||
)
|
)
|
||||||
views.setTextViewTextSize(
|
views.setTextViewTextSize(
|
||||||
R.id.alt_timezone_time_am_pm,
|
R.id.alt_timezone_time_am_pm,
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
(Preferences.clockTextSize.toPixel(context) / 3) / 5 * 2
|
(Preferences.clockTextSize / 3) / 5 * 2
|
||||||
)
|
)
|
||||||
views.setTextViewTextSize(
|
views.setTextViewTextSize(
|
||||||
R.id.alt_timezone_label,
|
R.id.alt_timezone_label,
|
||||||
TypedValue.COMPLEX_UNIT_SP,
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
(Preferences.clockTextSize.toPixel(context) / 3) / 5 * 2
|
(Preferences.clockTextSize / 3) / 5 * 2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
val padding = (TypedValue.applyDimension(
|
||||||
|
TypedValue.COMPLEX_UNIT_SP,
|
||||||
|
Preferences.clockTextSize,
|
||||||
|
context.resources.displayMetrics
|
||||||
|
) * 0.2).toInt()
|
||||||
|
if (Preferences.widgetAlign == Constants.WidgetAlign.RIGHT.rawValue)
|
||||||
|
views.setViewPadding(R.id.timezones_container, 0, padding, padding, 0)
|
||||||
|
else
|
||||||
|
views.setViewPadding(R.id.timezones_container, padding, padding, 0,0)
|
||||||
|
|
||||||
views.setOnClickPendingIntent(R.id.timezones_container, clockPIntent)
|
views.setOnClickPendingIntent(R.id.timezones_container, clockPIntent)
|
||||||
views.setViewVisibility(R.id.timezones_container, View.VISIBLE)
|
views.setViewVisibility(R.id.timezones_container, View.VISIBLE)
|
||||||
} else {
|
} else {
|
||||||
|
@ -7,7 +7,7 @@ import android.content.Context
|
|||||||
import android.content.res.Resources
|
import android.content.res.Resources
|
||||||
import android.graphics.Typeface
|
import android.graphics.Typeface
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import androidx.viewbinding.ViewBinding
|
import android.widget.RemoteViews
|
||||||
import com.tommasoberlose.anotherwidget.global.Constants
|
import com.tommasoberlose.anotherwidget.global.Constants
|
||||||
import com.tommasoberlose.anotherwidget.global.Preferences
|
import com.tommasoberlose.anotherwidget.global.Preferences
|
||||||
import com.tommasoberlose.anotherwidget.helpers.*
|
import com.tommasoberlose.anotherwidget.helpers.*
|
||||||
@ -63,17 +63,13 @@ class MainWidget : AppWidgetProvider() {
|
|||||||
|
|
||||||
internal fun updateAppWidget(context: Context, appWidgetManager: AppWidgetManager,
|
internal fun updateAppWidget(context: Context, appWidgetManager: AppWidgetManager,
|
||||||
appWidgetId: Int) {
|
appWidgetId: Int) {
|
||||||
val displayMetrics = Resources.getSystem().displayMetrics
|
|
||||||
val width = displayMetrics.widthPixels
|
|
||||||
val height = displayMetrics.heightPixels
|
|
||||||
|
|
||||||
val dimensions = WidgetHelper.WidgetSizeProvider(context, appWidgetManager).getWidgetsSize(appWidgetId)
|
val dimensions = WidgetHelper.WidgetSizeProvider(context, appWidgetManager).getWidgetsSize(appWidgetId)
|
||||||
|
|
||||||
WidgetHelper.runWithCustomTypeface(context) {
|
WidgetHelper.runWithCustomTypeface(context) {
|
||||||
val views = when (Preferences.widgetAlign) {
|
val views = when (Preferences.widgetAlign) {
|
||||||
Constants.WidgetAlign.LEFT.rawValue -> AlignedWidget(context).generateWidget(appWidgetId, min(dimensions.first - 8.toPixel(context), min(width, height) - 16.toPixel(context)), it)
|
Constants.WidgetAlign.LEFT.rawValue -> AlignedWidget(context).generateWidget(appWidgetId, dimensions.first, it)
|
||||||
Constants.WidgetAlign.RIGHT.rawValue -> AlignedWidget(context, rightAligned = true).generateWidget(appWidgetId, min(dimensions.first - 8.toPixel(context), min(width, height) - 16.toPixel(context)), it)
|
Constants.WidgetAlign.RIGHT.rawValue -> AlignedWidget(context, rightAligned = true).generateWidget(appWidgetId, dimensions.first, it)
|
||||||
else -> StandardWidget(context).generateWidget(appWidgetId, min(dimensions.first - 8.toPixel(context), min(width, height) - 16.toPixel(context)), it)
|
else -> StandardWidget(context).generateWidget(appWidgetId, dimensions.first, it)
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
if (views != null) appWidgetManager.updateAppWidget(appWidgetId, views)
|
if (views != null) appWidgetManager.updateAppWidget(appWidgetId, views)
|
||||||
@ -83,11 +79,18 @@ class MainWidget : AppWidgetProvider() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getWidgetView(context: Context, typeface: Typeface?): ViewBinding? {
|
fun getWidgetView(context: Context, width: Int, typeface: Typeface?): RemoteViews? {
|
||||||
return when (Preferences.widgetAlign) {
|
return when (Preferences.widgetAlign) {
|
||||||
Constants.WidgetAlign.LEFT.rawValue -> AlignedWidget(context).generateWidgetView(typeface)
|
Constants.WidgetAlign.LEFT.rawValue -> AlignedWidget(context).generateWidget(
|
||||||
Constants.WidgetAlign.RIGHT.rawValue -> AlignedWidget(context, rightAligned = true).generateWidgetView(typeface)
|
0,
|
||||||
else -> StandardWidget(context).generateWidgetView(typeface)
|
width,
|
||||||
|
typeface
|
||||||
|
)
|
||||||
|
Constants.WidgetAlign.RIGHT.rawValue -> AlignedWidget(
|
||||||
|
context,
|
||||||
|
rightAligned = true
|
||||||
|
).generateWidget(0, width, typeface)
|
||||||
|
else -> StandardWidget(context).generateWidget(0, width, typeface)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,13 +57,19 @@ class StandardWidget(val context: Context) {
|
|||||||
"setImageAlpha",
|
"setImageAlpha",
|
||||||
ColorHelper.getBackgroundAlpha(context.isDarkTheme())
|
ColorHelper.getBackgroundAlpha(context.isDarkTheme())
|
||||||
)
|
)
|
||||||
val refreshIntent = PendingIntent.getActivity(
|
val margin = Preferences.widgetMargin.convertDpToPixel(context).toInt()
|
||||||
|
views.setViewPadding(R.id.widget_shape_background, margin, margin, margin, margin)
|
||||||
|
val refreshIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
appWidgetId,
|
appWidgetId,
|
||||||
IntentHelper.getWidgetUpdateIntent(context),
|
IntentHelper.getWidgetUpdateIntent(context),
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.widget_shape_background, refreshIntent)
|
views.setOnClickPendingIntent(R.id.widget_shape_background, refreshIntent)
|
||||||
|
|
||||||
|
// Padding
|
||||||
|
val padding = (Preferences.widgetPadding.convertDpToPixel(context) + Preferences.widgetMargin.convertDpToPixel(context)).toInt()
|
||||||
|
views.setViewPadding(R.id.main_layout, padding, padding, padding, padding)
|
||||||
} catch (ex: Exception) {
|
} catch (ex: Exception) {
|
||||||
ex.printStackTrace()
|
ex.printStackTrace()
|
||||||
CrashlyticsReceiver.sendCrash(context, ex)
|
CrashlyticsReceiver.sendCrash(context, ex)
|
||||||
@ -76,9 +82,10 @@ class StandardWidget(val context: Context) {
|
|||||||
try {
|
try {
|
||||||
val generatedBinding = generateWidgetView(typeface) ?: return null
|
val generatedBinding = generateWidgetView(typeface) ?: return null
|
||||||
|
|
||||||
|
val width = w - (Preferences.widgetPadding.convertDpToPixel(context) + Preferences.widgetMargin.convertDpToPixel(context)).toInt() * 2
|
||||||
views.setImageViewBitmap(
|
views.setImageViewBitmap(
|
||||||
R.id.bitmap_container,
|
R.id.bitmap_container,
|
||||||
BitmapHelper.getBitmapFromView(generatedBinding.root, width = w)
|
BitmapHelper.getBitmapFromView(generatedBinding.root, width)
|
||||||
)
|
)
|
||||||
views = updateGridView(generatedBinding, views, appWidgetId)
|
views = updateGridView(generatedBinding, views, appWidgetId)
|
||||||
} catch (ex: Exception) {
|
} catch (ex: Exception) {
|
||||||
@ -99,7 +106,7 @@ class StandardWidget(val context: Context) {
|
|||||||
// Weather
|
// Weather
|
||||||
if (Preferences.showWeather && Preferences.weatherIcon != "") {
|
if (Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
views.setViewVisibility(R.id.weather_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.weather_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line, View.GONE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, View.GONE)
|
||||||
|
|
||||||
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
||||||
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
||||||
@ -119,7 +126,7 @@ class StandardWidget(val context: Context) {
|
|||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
views.setViewVisibility(R.id.weather_rect, View.GONE)
|
views.setViewVisibility(R.id.weather_rect, View.GONE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line, View.GONE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, View.GONE)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -129,7 +136,7 @@ class StandardWidget(val context: Context) {
|
|||||||
BitmapHelper.getBitmapFromView(bindingView.date, draw = false, width = bindingView.date.width, height = bindingView.date.height)
|
BitmapHelper.getBitmapFromView(bindingView.date, draw = false, width = bindingView.date.width, height = bindingView.date.height)
|
||||||
)
|
)
|
||||||
|
|
||||||
val calPIntent = PendingIntent.getActivity(
|
val calPIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getCalendarIntent(context),
|
IntentHelper.getCalendarIntent(context),
|
||||||
@ -144,8 +151,6 @@ class StandardWidget(val context: Context) {
|
|||||||
BitmapHelper.getBitmapFromView(bindingView.subLine, draw = false, width = bindingView.subLine.width, height = bindingView.subLine.height)
|
BitmapHelper.getBitmapFromView(bindingView.subLine, draw = false, width = bindingView.subLine.width, height = bindingView.subLine.height)
|
||||||
)
|
)
|
||||||
|
|
||||||
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
|
||||||
|
|
||||||
// Spacing
|
// Spacing
|
||||||
views.setViewVisibility(
|
views.setViewVisibility(
|
||||||
R.id.sub_line_top_margin_small_sans,
|
R.id.sub_line_top_margin_small_sans,
|
||||||
@ -209,7 +214,7 @@ class StandardWidget(val context: Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Event intent
|
// Event intent
|
||||||
val eventIntent = PendingIntent.getActivity(
|
val eventIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(context, nextEvent),
|
IntentHelper.getEventIntent(context, nextEvent),
|
||||||
@ -242,7 +247,7 @@ class StandardWidget(val context: Context) {
|
|||||||
|
|
||||||
// Event information
|
// Event information
|
||||||
if (nextEvent.address != "" && Preferences.secondRowInformation == 1) {
|
if (nextEvent.address != "" && Preferences.secondRowInformation == 1) {
|
||||||
val mapIntent = PendingIntent.getActivity(
|
val mapIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getGoogleMapsIntentFromAddress(context, nextEvent.address),
|
IntentHelper.getGoogleMapsIntentFromAddress(context, nextEvent.address),
|
||||||
@ -250,14 +255,10 @@ class StandardWidget(val context: Context) {
|
|||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, mapIntent)
|
views.setOnClickPendingIntent(R.id.sub_line_rect, mapIntent)
|
||||||
} else {
|
} else {
|
||||||
val pIntentDetail = PendingIntent.getActivity(
|
val pIntentDetail = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(
|
IntentHelper.getCalendarIntent(context, nextEvent.startDate),
|
||||||
context,
|
|
||||||
nextEvent,
|
|
||||||
forceEventDetails = true
|
|
||||||
),
|
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
)
|
)
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, pIntentDetail)
|
views.setOnClickPendingIntent(R.id.sub_line_rect, pIntentDetail)
|
||||||
@ -269,17 +270,18 @@ class StandardWidget(val context: Context) {
|
|||||||
)
|
)
|
||||||
views.setViewVisibility(R.id.calendar_layout_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.calendar_layout_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.weather_sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.weather_sub_line_rect, if (Preferences.showWeather && Preferences.weatherIcon != "") View.VISIBLE else View.GONE)
|
||||||
|
|
||||||
views.setViewVisibility(R.id.first_line_rect, View.GONE)
|
views.setViewVisibility(R.id.first_line_rect, View.GONE)
|
||||||
|
|
||||||
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
} else if (GlanceProviderHelper.showGlanceProviders(context)) {
|
||||||
var showSomething = false
|
var showSomething = false
|
||||||
|
var isWeatherShown = false
|
||||||
loop@ for (provider: Constants.GlanceProviderId in GlanceProviderHelper.getGlanceProviders(context)) {
|
loop@ for (provider: Constants.GlanceProviderId in GlanceProviderHelper.getGlanceProviders(context)) {
|
||||||
when (provider) {
|
when (provider) {
|
||||||
Constants.GlanceProviderId.PLAYING_SONG -> {
|
Constants.GlanceProviderId.PLAYING_SONG -> {
|
||||||
if (MediaPlayerHelper.isSomeonePlaying(context)) {
|
if (MediaPlayerHelper.isSomeonePlaying(context)) {
|
||||||
val musicIntent = PendingIntent.getActivity(
|
val musicIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getMusicIntent(context),
|
IntentHelper.getMusicIntent(context),
|
||||||
@ -291,23 +293,26 @@ class StandardWidget(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
||||||
if (Preferences.showNextAlarm && nextAlarm != "") {
|
if (Preferences.showNextAlarm) {
|
||||||
val alarmIntent = PendingIntent.getActivity(
|
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
||||||
context,
|
if (nextAlarm != "") {
|
||||||
widgetID,
|
val alarmIntent = IntentHelper.getPendingIntent(
|
||||||
IntentHelper.getClockIntent(context),
|
context,
|
||||||
PendingIntent.FLAG_UPDATE_CURRENT
|
widgetID,
|
||||||
)
|
IntentHelper.getClockIntent(context),
|
||||||
views.setOnClickPendingIntent(R.id.sub_line_rect, alarmIntent)
|
PendingIntent.FLAG_UPDATE_CURRENT
|
||||||
showSomething = true
|
)
|
||||||
break@loop
|
views.setOnClickPendingIntent(R.id.sub_line_rect, alarmIntent)
|
||||||
|
showSomething = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
||||||
if (Preferences.showBatteryCharging) {
|
if (Preferences.showBatteryCharging) {
|
||||||
BatteryHelper.updateBatteryInfo(context)
|
BatteryHelper.updateBatteryInfo(context)
|
||||||
if (Preferences.isCharging || Preferences.isBatteryLevelLow) {
|
if (Preferences.isCharging || Preferences.isBatteryLevelLow) {
|
||||||
val batteryIntent = PendingIntent.getActivity(
|
val batteryIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getBatteryIntent(),
|
IntentHelper.getBatteryIntent(),
|
||||||
@ -321,12 +326,13 @@ class StandardWidget(val context: Context) {
|
|||||||
}
|
}
|
||||||
Constants.GlanceProviderId.CUSTOM_INFO -> {
|
Constants.GlanceProviderId.CUSTOM_INFO -> {
|
||||||
if (Preferences.customNotes.isNotEmpty()) {
|
if (Preferences.customNotes.isNotEmpty()) {
|
||||||
|
showSomething = true
|
||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.GOOGLE_FIT_STEPS -> {
|
Constants.GlanceProviderId.GOOGLE_FIT_STEPS -> {
|
||||||
if (Preferences.showDailySteps && Preferences.googleFitSteps > 0) {
|
if (Preferences.showDailySteps && Preferences.googleFitSteps > 0) {
|
||||||
val fitIntent = PendingIntent.getActivity(
|
val fitIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getFitIntent(context),
|
IntentHelper.getFitIntent(context),
|
||||||
@ -347,7 +353,7 @@ class StandardWidget(val context: Context) {
|
|||||||
remotePackageContext,
|
remotePackageContext,
|
||||||
Preferences.lastNotificationIcon)
|
Preferences.lastNotificationIcon)
|
||||||
}
|
}
|
||||||
val notificationIntent = PendingIntent.getActivity(
|
val notificationIntent = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getNotificationIntent(context),
|
IntentHelper.getNotificationIntent(context),
|
||||||
@ -371,7 +377,7 @@ class StandardWidget(val context: Context) {
|
|||||||
Constants.GlanceProviderId.EVENTS -> {
|
Constants.GlanceProviderId.EVENTS -> {
|
||||||
if (Preferences.showEventsAsGlanceProvider&& Preferences.showEvents && context.checkGrantedPermission(
|
if (Preferences.showEventsAsGlanceProvider&& Preferences.showEvents && context.checkGrantedPermission(
|
||||||
Manifest.permission.READ_CALENDAR) && nextEvent != null) {
|
Manifest.permission.READ_CALENDAR) && nextEvent != null) {
|
||||||
val pIntentDetail = PendingIntent.getActivity(
|
val pIntentDetail = IntentHelper.getPendingIntent(
|
||||||
context,
|
context,
|
||||||
widgetID,
|
widgetID,
|
||||||
IntentHelper.getEventIntent(
|
IntentHelper.getEventIntent(
|
||||||
@ -389,6 +395,21 @@ class StandardWidget(val context: Context) {
|
|||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
if (Preferences.showWeatherAsGlanceProvider && Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
|
val i = Intent(context, WidgetClickListenerReceiver::class.java)
|
||||||
|
i.action = Actions.ACTION_OPEN_WEATHER_INTENT
|
||||||
|
val weatherPIntent = PendingIntent.getBroadcast(context, widgetID, i, 0)
|
||||||
|
|
||||||
|
views.setOnClickPendingIntent(
|
||||||
|
R.id.sub_line_rect,
|
||||||
|
weatherPIntent
|
||||||
|
)
|
||||||
|
showSomething = true
|
||||||
|
isWeatherShown = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -399,6 +420,7 @@ class StandardWidget(val context: Context) {
|
|||||||
BitmapHelper.getBitmapFromView(bindingView.subLine, draw = false, width = bindingView.subLine.width, height = bindingView.subLine.height)
|
BitmapHelper.getBitmapFromView(bindingView.subLine, draw = false, width = bindingView.subLine.width, height = bindingView.subLine.height)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
views.setViewVisibility(R.id.weather_rect, if (isWeatherShown) View.GONE else View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.first_line_rect, View.VISIBLE)
|
||||||
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
views.setViewVisibility(R.id.sub_line_rect, View.VISIBLE)
|
||||||
|
|
||||||
@ -432,8 +454,9 @@ class StandardWidget(val context: Context) {
|
|||||||
|
|
||||||
|
|
||||||
// Generates the widget bitmap from the view
|
// Generates the widget bitmap from the view
|
||||||
fun generateWidgetView(typeface: Typeface? = null): TheWidgetBinding? {
|
private fun generateWidgetView(typeface: Typeface? = null): TheWidgetBinding? {
|
||||||
try {
|
try {
|
||||||
|
var isWeatherShownAsGlanceProvider = false
|
||||||
val eventRepository = EventRepository(context)
|
val eventRepository = EventRepository(context)
|
||||||
val nextEvent = eventRepository.getNextEvent()
|
val nextEvent = eventRepository.getNextEvent()
|
||||||
val eventsCount = eventRepository.getEventsCount()
|
val eventsCount = eventRepository.getEventsCount()
|
||||||
@ -488,8 +511,6 @@ class StandardWidget(val context: Context) {
|
|||||||
|
|
||||||
bindingView.date.text = DateHelper.getDateText(context, now)
|
bindingView.date.text = DateHelper.getDateText(context, now)
|
||||||
|
|
||||||
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
|
||||||
|
|
||||||
if (Preferences.showEvents && context.checkGrantedPermission(Manifest.permission.READ_CALENDAR) && nextEvent != null && !Preferences.showEventsAsGlanceProvider) {
|
if (Preferences.showEvents && context.checkGrantedPermission(Manifest.permission.READ_CALENDAR) && nextEvent != null && !Preferences.showEventsAsGlanceProvider) {
|
||||||
// Multiple counter
|
// Multiple counter
|
||||||
bindingView.actionNext.isVisible =
|
bindingView.actionNext.isVisible =
|
||||||
@ -592,18 +613,16 @@ class StandardWidget(val context: Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
val flags: Int =
|
|
||||||
DateUtils.FORMAT_SHOW_DATE or DateUtils.FORMAT_NO_YEAR or DateUtils.FORMAT_ABBREV_MONTH
|
|
||||||
val start = Calendar.getInstance().apply { timeInMillis = nextEvent.startDate }
|
val start = Calendar.getInstance().apply { timeInMillis = nextEvent.startDate }
|
||||||
|
|
||||||
bindingView.subLineText.text = if (now.get(Calendar.DAY_OF_YEAR) == start.get(
|
bindingView.subLineText.text = if (now.get(Calendar.DAY_OF_YEAR) == start.get(
|
||||||
Calendar.DAY_OF_YEAR)) {
|
Calendar.DAY_OF_YEAR)) {
|
||||||
DateUtils.formatDateTime(context, nextEvent.startDate, flags)
|
DateHelper.getDateText(context, start)
|
||||||
} else if (now.get(Calendar.DAY_OF_YEAR) > start.get(Calendar.DAY_OF_YEAR) || now.get(
|
} else if (now.get(Calendar.DAY_OF_YEAR) > start.get(Calendar.DAY_OF_YEAR) || now.get(
|
||||||
Calendar.YEAR) > start.get(Calendar.YEAR)) {
|
Calendar.YEAR) > start.get(Calendar.YEAR)) {
|
||||||
DateUtils.formatDateTime(context, now.timeInMillis, flags)
|
DateHelper.getDateText(context, now)
|
||||||
} else {
|
} else {
|
||||||
DateUtils.formatDateTime(context, nextEvent.startDate, flags)
|
DateHelper.getDateText(context, start)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -611,7 +630,7 @@ class StandardWidget(val context: Context) {
|
|||||||
bindingView.dateLayout.isVisible = false
|
bindingView.dateLayout.isVisible = false
|
||||||
bindingView.calendarLayout.isVisible = true
|
bindingView.calendarLayout.isVisible = true
|
||||||
bindingView.subLine.isVisible = true
|
bindingView.subLine.isVisible = true
|
||||||
bindingView.weatherSubLine.isVisible = true
|
bindingView.weatherSubLine.isVisible = Preferences.showWeather && Preferences.weatherIcon != ""
|
||||||
|
|
||||||
bindingView.subLineTopMarginSmall.visibility =
|
bindingView.subLineTopMarginSmall.visibility =
|
||||||
if (Preferences.secondRowTopMargin == Constants.SecondRowTopMargin.SMALL.rawValue) View.VISIBLE else View.GONE
|
if (Preferences.secondRowTopMargin == Constants.SecondRowTopMargin.SMALL.rawValue) View.VISIBLE else View.GONE
|
||||||
@ -640,16 +659,19 @@ class StandardWidget(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
Constants.GlanceProviderId.NEXT_CLOCK_ALARM -> {
|
||||||
if (Preferences.showNextAlarm && nextAlarm != "") {
|
if (Preferences.showNextAlarm) {
|
||||||
bindingView.subLineIcon.setImageDrawable(
|
val nextAlarm = AlarmHelper.getNextAlarm(context)
|
||||||
ContextCompat.getDrawable(
|
if (nextAlarm != "") {
|
||||||
context,
|
bindingView.subLineIcon.setImageDrawable(
|
||||||
R.drawable.round_alarm_24
|
ContextCompat.getDrawable(
|
||||||
|
context,
|
||||||
|
R.drawable.round_alarm_24
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
bindingView.subLineText.text = nextAlarm
|
||||||
bindingView.subLineText.text = AlarmHelper.getNextAlarm(context)
|
showSomething = true
|
||||||
showSomething = true
|
break@loop
|
||||||
break@loop
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
Constants.GlanceProviderId.BATTERY_LEVEL_LOW -> {
|
||||||
@ -753,6 +775,33 @@ class StandardWidget(val context: Context) {
|
|||||||
break@loop
|
break@loop
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Constants.GlanceProviderId.WEATHER -> {
|
||||||
|
if (Preferences.showWeatherAsGlanceProvider && Preferences.showWeather && Preferences.weatherIcon != "") {
|
||||||
|
bindingView.subLineText.text = String.format(
|
||||||
|
Locale.getDefault(),
|
||||||
|
"%d°%s %s",
|
||||||
|
Preferences.weatherTemp.roundToInt(),
|
||||||
|
Preferences.weatherRealTempUnit,
|
||||||
|
WeatherHelper.getWeatherLabel(context, Preferences.weatherIcon)
|
||||||
|
)
|
||||||
|
bindingView.subLineIcon.isVisible = true
|
||||||
|
|
||||||
|
val icon: String = Preferences.weatherIcon
|
||||||
|
if (icon == "") {
|
||||||
|
bindingView.subLineIcon.isVisible = false
|
||||||
|
} else {
|
||||||
|
bindingView.subLineIcon.setImageResource(WeatherHelper.getWeatherIconResource(context, icon))
|
||||||
|
bindingView.subLineIcon.isVisible = true
|
||||||
|
}
|
||||||
|
|
||||||
|
bindingView.weatherDateLine.isVisible = false
|
||||||
|
bindingView.weatherSubLine.isVisible = false
|
||||||
|
|
||||||
|
isWeatherShownAsGlanceProvider = true
|
||||||
|
showSomething = true
|
||||||
|
break@loop
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -806,48 +855,58 @@ class StandardWidget(val context: Context) {
|
|||||||
it.setTextColor(ColorHelper.getSecondaryFontColor(context.applicationContext.isDarkTheme()))
|
it.setTextColor(ColorHelper.getSecondaryFontColor(context.applicationContext.isDarkTheme()))
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Preferences.weatherIconPack != Constants.WeatherIconPack.MINIMAL.rawValue) {
|
if (!isWeatherShownAsGlanceProvider) {
|
||||||
listOf<ImageView>(bindingView.subLineIcon, bindingView.subLineIconShadow)
|
if (Preferences.weatherIconPack != Constants.WeatherIconPack.MINIMAL.rawValue) {
|
||||||
} else {
|
listOf<ImageView>(bindingView.subLineIcon, bindingView.subLineIconShadow)
|
||||||
listOf<ImageView>(bindingView.subLineIcon, bindingView.weatherSubLineWeatherIcon, bindingView.subLineIconShadow)
|
} else {
|
||||||
}.forEach {
|
listOf<ImageView>(
|
||||||
it.setColorFilter(ColorHelper.getSecondaryFontColorRgb(context.applicationContext.isDarkTheme()))
|
bindingView.subLineIcon,
|
||||||
it.alpha =
|
bindingView.weatherSubLineWeatherIcon,
|
||||||
(if (context.isDarkTheme()) Preferences.textSecondaryAlphaDark.toIntValue()
|
bindingView.subLineIconShadow
|
||||||
.toFloat() else Preferences.textSecondaryAlpha.toIntValue()
|
)
|
||||||
.toFloat()) / 100
|
}.forEach {
|
||||||
|
it.setColorFilter(ColorHelper.getSecondaryFontColorRgb(context.applicationContext.isDarkTheme()))
|
||||||
|
it.alpha =
|
||||||
|
(if (context.isDarkTheme()) Preferences.textSecondaryAlphaDark.toIntValue()
|
||||||
|
.toFloat() else Preferences.textSecondaryAlpha.toIntValue()
|
||||||
|
.toFloat()) / 100
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Text Size
|
// Text Size
|
||||||
listOf<Pair<TextView, Float>>(
|
listOf<Pair<TextView, Float>>(
|
||||||
bindingView.date to Preferences.textMainSize,
|
bindingView.date to Preferences.textMainSize,
|
||||||
bindingView.weatherDateLineDivider to (Preferences.textMainSize - 2),
|
bindingView.weatherDateLineDivider to (Preferences.textMainSize * 0.9f),
|
||||||
bindingView.weatherDateLineTemperature to Preferences.textMainSize,
|
bindingView.weatherDateLineTemperature to Preferences.textMainSize,
|
||||||
bindingView.nextEvent to Preferences.textMainSize,
|
bindingView.nextEvent to Preferences.textMainSize,
|
||||||
bindingView.nextEventDifferenceTime to Preferences.textMainSize,
|
bindingView.nextEventDifferenceTime to Preferences.textMainSize,
|
||||||
bindingView.subLineText to Preferences.textSecondSize,
|
bindingView.subLineText to Preferences.textSecondSize,
|
||||||
bindingView.weatherSubLineDivider to (Preferences.textSecondSize - 2),
|
bindingView.weatherSubLineDivider to (Preferences.textSecondSize * 0.9f),
|
||||||
bindingView.weatherSubLineTemperature to Preferences.textSecondSize,
|
bindingView.weatherSubLineTemperature to Preferences.textSecondSize,
|
||||||
).forEach {
|
).forEach {
|
||||||
it.first.setTextSize(TypedValue.COMPLEX_UNIT_SP, it.second)
|
it.first.setTextSize(TypedValue.COMPLEX_UNIT_SP, it.second)
|
||||||
|
if (!it.first.includeFontPadding && android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.P)
|
||||||
|
it.first.isFallbackLineSpacing = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// Icons scale
|
// Icons scale
|
||||||
bindingView.subLineIcon.scaleX = Preferences.textSecondSize / 18f
|
listOf(
|
||||||
bindingView.subLineIcon.scaleY = Preferences.textSecondSize / 18f
|
bindingView.subLineIcon to Preferences.textSecondSize / 16f,
|
||||||
|
bindingView.subLineIconShadow to Preferences.textSecondSize / 16f,
|
||||||
bindingView.weatherSubLineWeatherIcon.scaleX = Preferences.textSecondSize / 18f
|
bindingView.weatherSubLineWeatherIcon to Preferences.textSecondSize / 16f,
|
||||||
bindingView.weatherSubLineWeatherIcon.scaleY = Preferences.textSecondSize / 18f
|
bindingView.weatherDateLineWeatherIcon to Preferences.textMainSize / 24f,
|
||||||
|
bindingView.actionNext to Preferences.textMainSize / 24f,
|
||||||
bindingView.weatherDateLineWeatherIcon.scaleX = Preferences.textMainSize / 18f
|
bindingView.actionNextShadow to Preferences.textMainSize / 24f,
|
||||||
bindingView.weatherDateLineWeatherIcon.scaleY = Preferences.textMainSize / 18f
|
bindingView.actionPrevious to Preferences.textMainSize / 24f,
|
||||||
|
bindingView.actionPreviousShadow to Preferences.textMainSize / 24f
|
||||||
bindingView.actionNext.scaleX = Preferences.textMainSize / 28f
|
).forEach {
|
||||||
bindingView.actionNext.scaleY = Preferences.textMainSize / 28f
|
if (it.first.tag == null)
|
||||||
|
it.first.tag = it.first.layoutParams.height
|
||||||
bindingView.actionPrevious.scaleX = Preferences.textMainSize / 28f
|
it.first.layoutParams = it.first.layoutParams.apply {
|
||||||
bindingView.actionPrevious.scaleY = Preferences.textMainSize / 28f
|
height = ((it.first.tag as Int) * it.second).roundToInt()
|
||||||
|
width = height
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Shadows
|
// Shadows
|
||||||
val shadowRadius =
|
val shadowRadius =
|
||||||
@ -896,7 +955,7 @@ class StandardWidget(val context: Context) {
|
|||||||
it.second.isVisible = it.first.isVisible
|
it.second.isVisible = it.first.isVisible
|
||||||
it.second.scaleX = it.first.scaleX
|
it.second.scaleX = it.first.scaleX
|
||||||
it.second.scaleY = it.first.scaleY
|
it.second.scaleY = it.first.scaleY
|
||||||
it.second.applyShadow(it.first)
|
it.second.applyShadow(it.first, 0.7f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -919,14 +978,17 @@ class StandardWidget(val context: Context) {
|
|||||||
|
|
||||||
// Custom Font
|
// Custom Font
|
||||||
if (Preferences.customFont == Constants.CUSTOM_FONT_GOOGLE_SANS) {
|
if (Preferences.customFont == Constants.CUSTOM_FONT_GOOGLE_SANS) {
|
||||||
val googleSans: Typeface = when (Preferences.customFontVariant) {
|
val googleSans: Typeface? = androidx.core.content.res.ResourcesCompat.getFont(
|
||||||
"100" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_thin.ttf")
|
context,
|
||||||
"200" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_light.ttf")
|
when (Preferences.customFontVariant) {
|
||||||
"500" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_medium.ttf")
|
"100" -> R.font.google_sans_thin
|
||||||
"700" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_bold.ttf")
|
"200" -> R.font.google_sans_light
|
||||||
"800" -> Typeface.createFromAsset(context.assets, "fonts/google_sans_black.ttf")
|
"500" -> R.font.google_sans_medium
|
||||||
else -> Typeface.createFromAsset(context.assets, "fonts/google_sans_regular.ttf")
|
"700" -> R.font.google_sans_bold
|
||||||
}
|
"800" -> R.font.google_sans_black
|
||||||
|
else -> R.font.google_sans_regular
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
listOf<TextView>(
|
listOf<TextView>(
|
||||||
bindingView.date,
|
bindingView.date,
|
||||||
@ -957,10 +1019,7 @@ class StandardWidget(val context: Context) {
|
|||||||
|
|
||||||
// Dividers
|
// Dividers
|
||||||
arrayOf(bindingView.weatherDateLineDivider, bindingView.weatherSubLineDivider).forEach {
|
arrayOf(bindingView.weatherDateLineDivider, bindingView.weatherSubLineDivider).forEach {
|
||||||
it.visibility = if (Preferences.showDividers) View.VISIBLE else View.INVISIBLE
|
it.visibility = if (Preferences.showDividers) View.VISIBLE else View.GONE
|
||||||
it.layoutParams = (it.layoutParams as ViewGroup.MarginLayoutParams).apply {
|
|
||||||
this.marginEnd = if (Preferences.showDividers) 8f.convertDpToPixel(context).toInt() else 0
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,18 +24,20 @@ import android.util.TypedValue
|
|||||||
import android.view.animation.AlphaAnimation
|
import android.view.animation.AlphaAnimation
|
||||||
import android.widget.RelativeLayout
|
import android.widget.RelativeLayout
|
||||||
import androidx.annotation.UiThread
|
import androidx.annotation.UiThread
|
||||||
|
import androidx.appcompat.app.AppCompatDelegate
|
||||||
import androidx.browser.customtabs.CustomTabColorSchemeParams
|
import androidx.browser.customtabs.CustomTabColorSchemeParams
|
||||||
import androidx.core.animation.addListener
|
import androidx.core.animation.addListener
|
||||||
import androidx.core.view.isVisible
|
import androidx.core.view.isVisible
|
||||||
import com.tommasoberlose.anotherwidget.R
|
import com.tommasoberlose.anotherwidget.R
|
||||||
import com.tommasoberlose.anotherwidget.components.OnSingleClickListener
|
import com.tommasoberlose.anotherwidget.components.OnSingleClickListener
|
||||||
|
import com.tommasoberlose.anotherwidget.global.Preferences
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
|
||||||
fun PackageManager.missingSystemFeature(name: String): Boolean = !hasSystemFeature(name)
|
fun PackageManager.missingSystemFeature(name: String): Boolean = !hasSystemFeature(name)
|
||||||
|
|
||||||
fun Context.toast(message: String, long: Boolean = false) {
|
fun Context.toast(message: String, long: Boolean = false) {
|
||||||
val toast = Toast.makeText(this, message, if (long) Toast.LENGTH_LONG else Toast.LENGTH_SHORT)
|
val toast = Toast.makeText(applicationContext, message, if (long) Toast.LENGTH_LONG else Toast.LENGTH_SHORT)
|
||||||
// toast.setGravity(Gravity.CENTER, 0, 0)
|
// toast.setGravity(Gravity.CENTER, 0, 0)
|
||||||
toast.show()
|
toast.show()
|
||||||
}
|
}
|
||||||
@ -192,7 +194,7 @@ fun String.isValidEmail(): Boolean
|
|||||||
Patterns.EMAIL_ADDRESS.matcher(this).matches()
|
Patterns.EMAIL_ADDRESS.matcher(this).matches()
|
||||||
|
|
||||||
fun Context.isDarkTheme(): Boolean {
|
fun Context.isDarkTheme(): Boolean {
|
||||||
return resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK == Configuration.UI_MODE_NIGHT_YES
|
return Preferences.darkThemePreference == AppCompatDelegate.MODE_NIGHT_YES || Preferences.darkThemePreference == AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM && resources.configuration.uiMode and Configuration.UI_MODE_NIGHT_MASK == Configuration.UI_MODE_NIGHT_YES
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Activity.isNotificationAccessGranted(): Boolean = Settings.Secure.getString(this.contentResolver,"enabled_notification_listeners").contains(this.packageName)
|
fun Activity.isNotificationAccessGranted(): Boolean = Settings.Secure.getString(this.contentResolver,"enabled_notification_listeners").contains(this.packageName)
|
||||||
|
BIN
app/src/main/res/drawable-hdpi/round_border_outer_black_18.png
Normal file
After Width: | Height: | Size: 180 B |
BIN
app/src/main/res/drawable-hdpi/round_border_outer_black_20.png
Normal file
After Width: | Height: | Size: 186 B |
BIN
app/src/main/res/drawable-hdpi/round_border_outer_black_24.png
Normal file
After Width: | Height: | Size: 188 B |
BIN
app/src/main/res/drawable-hdpi/round_border_outer_black_36.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
app/src/main/res/drawable-hdpi/round_border_outer_black_48.png
Normal file
After Width: | Height: | Size: 252 B |
BIN
app/src/main/res/drawable-hdpi/round_dark_mode_white_18.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
app/src/main/res/drawable-hdpi/round_dark_mode_white_20.png
Normal file
After Width: | Height: | Size: 281 B |
BIN
app/src/main/res/drawable-hdpi/round_dark_mode_white_24.png
Normal file
After Width: | Height: | Size: 325 B |
BIN
app/src/main/res/drawable-hdpi/round_dark_mode_white_36.png
Normal file
After Width: | Height: | Size: 451 B |
BIN
app/src/main/res/drawable-hdpi/round_dark_mode_white_48.png
Normal file
After Width: | Height: | Size: 571 B |
BIN
app/src/main/res/drawable-hdpi/round_select_all_black_18.png
Normal file
After Width: | Height: | Size: 217 B |
BIN
app/src/main/res/drawable-hdpi/round_select_all_black_20.png
Normal file
After Width: | Height: | Size: 212 B |
BIN
app/src/main/res/drawable-hdpi/round_select_all_black_24.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
app/src/main/res/drawable-hdpi/round_select_all_black_36.png
Normal file
After Width: | Height: | Size: 282 B |
BIN
app/src/main/res/drawable-hdpi/round_select_all_black_48.png
Normal file
After Width: | Height: | Size: 268 B |
BIN
app/src/main/res/drawable-mdpi/round_border_outer_black_18.png
Normal file
After Width: | Height: | Size: 158 B |
BIN
app/src/main/res/drawable-mdpi/round_border_outer_black_20.png
Normal file
After Width: | Height: | Size: 155 B |
BIN
app/src/main/res/drawable-mdpi/round_border_outer_black_24.png
Normal file
After Width: | Height: | Size: 133 B |
BIN
app/src/main/res/drawable-mdpi/round_border_outer_black_36.png
Normal file
After Width: | Height: | Size: 188 B |
BIN
app/src/main/res/drawable-mdpi/round_border_outer_black_48.png
Normal file
After Width: | Height: | Size: 187 B |
BIN
app/src/main/res/drawable-mdpi/round_dark_mode_white_18.png
Normal file
After Width: | Height: | Size: 191 B |
BIN
app/src/main/res/drawable-mdpi/round_dark_mode_white_20.png
Normal file
After Width: | Height: | Size: 194 B |
BIN
app/src/main/res/drawable-mdpi/round_dark_mode_white_24.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
app/src/main/res/drawable-mdpi/round_dark_mode_white_36.png
Normal file
After Width: | Height: | Size: 325 B |
BIN
app/src/main/res/drawable-mdpi/round_dark_mode_white_48.png
Normal file
After Width: | Height: | Size: 397 B |
BIN
app/src/main/res/drawable-mdpi/round_select_all_black_18.png
Normal file
After Width: | Height: | Size: 194 B |
BIN
app/src/main/res/drawable-mdpi/round_select_all_black_20.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
app/src/main/res/drawable-mdpi/round_select_all_black_24.png
Normal file
After Width: | Height: | Size: 141 B |
BIN
app/src/main/res/drawable-mdpi/round_select_all_black_36.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
app/src/main/res/drawable-mdpi/round_select_all_black_48.png
Normal file
After Width: | Height: | Size: 202 B |
BIN
app/src/main/res/drawable-night-hdpi/round_border_outer_24.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
app/src/main/res/drawable-night-hdpi/round_select_all_24.png
Normal file
After Width: | Height: | Size: 227 B |
BIN
app/src/main/res/drawable-night-mdpi/round_border_outer_24.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
app/src/main/res/drawable-night-mdpi/round_select_all_24.png
Normal file
After Width: | Height: | Size: 148 B |
BIN
app/src/main/res/drawable-night-xhdpi/round_border_outer_24.png
Normal file
After Width: | Height: | Size: 203 B |
BIN
app/src/main/res/drawable-night-xhdpi/round_select_all_24.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
app/src/main/res/drawable-night-xxhdpi/round_border_outer_24.png
Normal file
After Width: | Height: | Size: 286 B |
BIN
app/src/main/res/drawable-night-xxhdpi/round_select_all_24.png
Normal file
After Width: | Height: | Size: 307 B |
After Width: | Height: | Size: 323 B |
BIN
app/src/main/res/drawable-night-xxxhdpi/round_select_all_24.png
Normal file
After Width: | Height: | Size: 364 B |