Skip to content

Commit

Permalink
feat: finish glance support (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
ABausG committed Mar 24, 2024
1 parent b004b33 commit dd2d116
Show file tree
Hide file tree
Showing 17 changed files with 431 additions and 111 deletions.
253 changes: 165 additions & 88 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,86 @@ let data = UserDefaults.init(suiteName:"YOUR_GROUP_ID")
```
</details>

<details><summary>Android</summary>
<details><summary>Android (Jetpack Glance)</summary>

### Add Jetpack Glance as a dependency to you app's Gradle File
```groovy
implementation 'androidx.glance:glance-appwidget:LATEST-VERSION'
```

### Create Widget Configuration into `android/app/src/main/res/xml`
```xml
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:initialLayout="@layout/glance_default_loading_layout"
android:minWidth="40dp"
android:minHeight="40dp"
android:resizeMode="horizontal|vertical"
android:updatePeriodMillis="10000">
</appwidget-provider>
```

### Add WidgetReceiver to AndroidManifest
```xml
<receiver android:name=".glance.HomeWidgetReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/home_widget_glance_example" />
</receiver>
```

### Create WidgetReceiver

To get automatic Updates you should extend from [HomeWidgetGlanceWidgetReceiver](android/src/main/kotlin/es/antonborri/home_widget/HomeWidgetGlanceWidgetReceiver.kt)

Your Receiver should then look like this

```kotlin
package es.antonborri.home_widget_example.glance

import HomeWidgetGlanceWidgetReceiver

class HomeWidgetReceiver : HomeWidgetGlanceWidgetReceiver<HomeWidgetGlanceAppWidget>() {
override val glanceAppWidget = HomeWidgetGlanceAppWidget()
}
```

### Build Your AppWidget

```kotlin

class HomeWidgetGlanceAppWidget : GlanceAppWidget() {

/**
* Needed for Updating
*/
override val stateDefinition = HomeWidgetGlanceStateDefinition()

override suspend fun provideGlance(context: Context, id: GlanceId) {
provideContent {
GlanceContent(context, currentState())
}
}

@Composable
private fun GlanceContent(context: Context, currentState: HomeWidgetGlanceState) {
// Use data to access the data you save with
val data = currentState.preferences


// Build Your Composable Widget
Column(
...
}

```

</details>

<details><summary>Android (XML)</summary>

### Create Widget Layout inside `android/app/src/main/res/layout`

Expand Down Expand Up @@ -103,22 +182,6 @@ which will give you access to the same SharedPreferences
### More Information
For more Information on how to create and configure Android Widgets, check out [this guide](https://developer.android.com/develop/ui/views/appwidgets) on the Android Developers Page.
### Jetpack Glance
In Jetpack Glance, you have to write your receiver (== provider), that returns a widget.
Add it to AndroidManifest the same way as written above for android widgets.

```kotlin
class MyReceiver : GlanceAppWidgetReceiver() {
override val glanceAppWidget: GlanceAppWidget get() = MyWidget()
}
```

If you need to access HomeWidget shared preferences, use this:

```kotlin
HomeWidgetPlugin.getData(context)
```

</details>
## Usage
Expand All @@ -145,14 +208,17 @@ HomeWidget.updateWidget(
);
```

The name for Android will be chosen by checking `qualifiedAndroidName`, falling back to `<packageName>.androidName` and if that was not provided it
will fallback to `<packageName>.name`.
The name for Android will be chosen by checking `qualifiedAndroidName`, falling back to `<packageName>.androidName` and if that was not provided it will fallback to `<packageName>.name`.
This Name needs to be equal to the Classname of the [WidgetProvider](#Write-your-Widget)

The name for iOS will be chosen by checking `iOSName` if that was not provided it will fallback to `name`.
This name needs to be equal to the Kind specified in you Widget

#### Android
#### Android (Jetpack Glance)

If you followed the guide and use `HomeWidgetGlanceWidgetReceiver` as your Receiver, `HomeWidgetGlanceStateDefinition` as the AppWidgetStateDefinition, `currentState()` in the composable view and `currentState.preferences` for data access. No further work is necessary.

#### Android (XML)
Calling `HomeWidget.updateWidget` only notifies the specified provider.
To update widgets using this provider,
update them from the provider like this:
Expand All @@ -173,36 +239,6 @@ class HomeWidgetExampleProvider : HomeWidgetProvider() {
}
```

#### Jetpack Glance
Updating widgets in Jetpack Glance is a bit more tricky,
widgets are only updated when their state changes,
therefore simple update will not refresh them.
To update them, you have to fake state update like this:

```kotlin
class MyWidgetReceiver : GlanceAppWidgetReceiver() {
override val glanceAppWidget: GlanceAppWidget get() = MyWidget()

override fun onUpdate(context: Context, appWidgetManager: AppWidgetManager, appWidgetIds: IntArray) {
super.onUpdate(context, appWidgetManager, appWidgetIds)

runBlocking {
appWidgetIds.forEach {
val glanceId = GlanceAppWidgetManager(context).getGlanceIdBy(it)
MyWidget().apply {
// Must update widget state otherwise it update has no effect for some reason.
updateAppWidgetState(context, glanceId) { prefs ->
prefs[stringPreferencesKey("___FAKE_UPDATE___")] = Random.nextULong().toString()
}

// Update widget.
update(context, glanceId)
}
}
}
}
}
```

### Retrieve Data
To retrieve the current Data saved in the Widget call `HomeWidget.getWidgetData<String>('id', defaultValue: data)`
Expand Down Expand Up @@ -301,7 +337,40 @@ Android and iOS (starting with iOS 17) allow widgets to have interactive Element
This code tells the system to always perform the Intent in the App and not in a process attached to the Widget. Note however that this will start your Flutter App using the normal main entrypoint meaning your full app might be run in the background. To counter this you should add checks in the very first Widget you build inside `runApp` to only perform necessary calls/setups while the App is launched in the background
</details>
<details><summary>Android</summary>
<details><summary>Android Jetpack Glance</summary>
1. Add the necessary Receiver and Service to your `AndroidManifest.xml` file
```
<receiver android:name="es.antonborri.home_widget.HomeWidgetBackgroundReceiver" android:exported="true">
<intent-filter>
<action android:name="es.antonborri.home_widget.action.BACKGROUND" />
</intent-filter>
</receiver>
<service android:name="es.antonborri.home_widget.HomeWidgetBackgroundService"
android:permission="android.permission.BIND_JOB_SERVICE" android:exported="true"/>
```
2. Create a custom Action
```kotlin
class InteractiveAction : ActionCallback {
override suspend fun onAction(context: Context, glanceId: GlanceId, parameters: ActionParameters) {
val backgroundIntent = HomeWidgetBackgroundIntent.getBroadcast(context, Uri.parse("homeWidgetExample://titleClicked"))
backgroundIntent.send()
}
}
```
3. Add the Action as a modifier to a view
```kotlin
Text(
title,
style = TextStyle(fontSize = 36.sp, fontWeight = FontWeight.Bold),
modifier = GlanceModifier.clickable(onClick = actionRunCallback<InteractiveAction>()),
)
```
</details>
<details><summary>Android XML </summary>
1. Add the necessary Receiver and Service to your `AndroidManifest.xml` file
```
Expand Down Expand Up @@ -413,7 +482,25 @@ To retrieve the image and display it in a widget, you can use the following Swif
<img width="522" alt="Screenshot 2023-06-07 at 12 57 28 PM" src="https://github.com/ABausG/home_widget/assets/21065911/f7dcdea0-605a-4662-a03a-158831a4e946">
</details>

<details><summary>Android</summary>
<details><summary>Android (Jetpack Glance)</summary>

```kotlin
// Access data
val data = currentState.preferences

// Get Path
val imagePath = data.getString("lineChart", null)

// Add Image to Compose Tree
imagePath?.let {
val bitmap = BitmapFactory.decodeFile(it)
Image(androidx.glance.ImageProvider(bitmap), null)
}
```

</details>

<details><summary>Android (XML)</summary>

1. Add an image UI element to your xml file:
```xml
Expand Down Expand Up @@ -484,57 +571,47 @@ Text(entry.message)
In order to only detect Widget Links you need to add the queryParameter`homeWidget` to the URL
</details>

<details><summary>Android</summary>
<details><summary>Android Jetpack Glance</summary>

Add an `IntentFilter` to the `Activity` Section in your `AndroidManifest`
```
<intent-filter>
<action android:name="es.antonborri.home_widget.action.LAUNCH" />
</intent-filter>
```

In your WidgetProvider add a PendingIntent to your View using `HomeWidgetLaunchIntent.getActivity`
Add the following modifier to your Widget (import from HomeWidget)
```kotlin
val pendingIntentWithData = HomeWidgetLaunchIntent.getActivity(
context,
MainActivity::class.java,
Uri.parse("homeWidgetExample://message?message=$message"))
setOnClickPendingIntent(R.id.widget_message, pendingIntentWithData)
Text(
message,
style = TextStyle(fontSize = 18.sp),
modifier = GlanceModifier.clickable(
onClick = actionStartActivity<MainActivity>(
context,
Uri.parse("homeWidgetExample://message?message=$message")
)
)
)
```

#### Jetpack Glance
Create an `ActionCallback`:

```kotlin
class OpenAppAction : ActionCallback {
companion object {
const val MESSAGE_KEY = "OpenAppActionMessageKey"
}

override suspend fun onAction(
context: Context, glanceId: GlanceId, parameters: ActionParameters
) {
val message = parameters[ActionParameters.Key<String>(MESSAGE_KEY)]
</details>

val pendingIntentWithData = HomeWidgetLaunchIntent.getActivity(
context, MainActivity::class.java, Uri.parse("homeWidgetExample://message?message=$message")
)
<details><summary>Android XML</summary>

pendingIntentWithData.send()
}
}
Add an `IntentFilter` to the `Activity` Section in your `AndroidManifest`
```
<intent-filter>
<action android:name="es.antonborri.home_widget.action.LAUNCH" />
</intent-filter>
```

and use it like this:

In your WidgetProvider add a PendingIntent to your View using `HomeWidgetLaunchIntent.getActivity`
```kotlin
Button(
text = "Open App",
onClick = actionRunCallback<OpenConfigurationAction>(
actionParametersOf(
ActionParameters.Key<String>(OpenAppAction.MESSAGE_KEY) to "your message"
)
)
)
val pendingIntentWithData = HomeWidgetLaunchIntent.getActivity(
context,
MainActivity::class.java,
Uri.parse("homeWidgetExample://message?message=$message"))
setOnClickPendingIntent(R.id.widget_message, pendingIntentWithData)
```

</details>
Expand Down
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'androidx.glance:glance-appwidget:1.0.0'
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import android.content.Context
import android.content.SharedPreferences
import android.os.Environment
import androidx.datastore.core.DataStore
import androidx.glance.state.GlanceStateDefinition
import es.antonborri.home_widget.HomeWidgetPlugin
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.flow
import java.io.File

class HomeWidgetGlanceState(val preferences: SharedPreferences)

class HomeWidgetGlanceStateDefinition : GlanceStateDefinition<HomeWidgetGlanceState> {
override suspend fun getDataStore(context: Context, fileKey: String): DataStore<HomeWidgetGlanceState> {
val preferences = context.getSharedPreferences(HomeWidgetPlugin.PREFERENCES, Context.MODE_PRIVATE)
return HomeWidgetGlanceDataStore(preferences)
}

override fun getLocation(context: Context, fileKey: String): File {
return Environment.getDataDirectory()
}

}

private class HomeWidgetGlanceDataStore(private val preferences: SharedPreferences) : DataStore<HomeWidgetGlanceState> {
override val data: Flow<HomeWidgetGlanceState>
get() = flow { emit(HomeWidgetGlanceState(preferences)) }

override suspend fun updateData(transform: suspend (t: HomeWidgetGlanceState) -> HomeWidgetGlanceState): HomeWidgetGlanceState {
return transform(HomeWidgetGlanceState(preferences))
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import android.appwidget.AppWidgetManager
import android.content.Context
import androidx.glance.appwidget.GlanceAppWidget
import androidx.glance.appwidget.GlanceAppWidgetManager
import androidx.glance.appwidget.GlanceAppWidgetReceiver
import androidx.glance.appwidget.state.updateAppWidgetState
import kotlinx.coroutines.runBlocking

abstract class HomeWidgetGlanceWidgetReceiver<T : GlanceAppWidget> : GlanceAppWidgetReceiver() {

abstract override val glanceAppWidget: T

override fun onUpdate(context: Context, appWidgetManager: AppWidgetManager, appWidgetIds: IntArray) {
super.onUpdate(context, appWidgetManager, appWidgetIds)
runBlocking {
appWidgetIds.forEach {
val glanceId = GlanceAppWidgetManager(context).getGlanceIdBy(it)
glanceAppWidget.apply {
if (this.stateDefinition is HomeWidgetGlanceStateDefinition) {
// Must Update State
updateAppWidgetState<HomeWidgetGlanceState>(context = context, this.stateDefinition as HomeWidgetGlanceStateDefinition, glanceId) { currentState -> currentState }
}
// Update widget.
update(context, glanceId)
}
}
}
}
}

0 comments on commit dd2d116

Please sign in to comment.