如何获取Compose Glance控件的AppWidgetID?

How to get the AppWidgetId of a Compose Glance widget?(如何获取Compose Glance控件的AppWidgetID?)
本文介绍了如何获取Compose Glance控件的AppWidgetID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个表,其中包含用户创建的所有小部件。我想使用相应的表项自定义各个小部件,并在与小部件交互时更新相应的表项。

uid AppWidgetID 标题
0 23 第一个小工具
1 165 第二个小工具

(1)当用户单击小部件时,我只想更新所单击的小部件的条目。在非扫视世界中,我通过向每个如下所示的小部件添加onClickListener来做到这一点:

val widgetView = RemoteViews(context.packageName, R.layout.widget_layout)
val widgetPendingIntent = ...
widgetView.setOnClickPendingIntent(R.id.appwidget_text, widgetPendingIntent)
val appWidgetManager = AppWidgetManager.getInstance(context)
appWidgetManager.updateAppWidget(appWidgetId, widgetView)

在Glance小部件中,我假设需要使可组合的Clickable如下所示:

    @Composable
    override fun Content() {
        Column(
            modifier = GlanceModifier
                .fillMaxSize()
                .clickable(onClick = actionRunCallback<ClickOnWidget>())
        ) {
            Text(
                text = "Title",
                modifier = GlanceModifier.fillMaxSize(),
            )
        }
    }

ActionCallback如下所示:

class ClickOnWidget : ActionCallback {
    override suspend fun onRun(context: Context, glanceId: GlanceId, parameters: ActionParameters) {
       // Update my table with the click
    }
}

我希望这里有一个appWidgetID,但只看到一个glanceID:GlanceID。我是否可以使用它来获取appWidgetID或直接在我的表中使用glanceID作为标识符?

(2)我想根据表中的数据设置我的小部件的样式。根据带有相应appWidgetID的表项设置小部件样式的最佳方式是什么?例如,不知何故:

    @Composable
    override fun Content() {
        Column(
            modifier = GlanceModifier
                .fillMaxSize()
                .clickable(onClick = actionRunCallback<ToastAction>())
        ) {
            Text(
                // *** Add a text depending on the appWidgetId ***
                text = titleOf(appWidgetId),
                modifier = GlanceModifier.fillMaxSize(),
            )
        }
    }

推荐答案

您无法获取AppWidgetID,这是设计出来的。

对于您的用例,我们建议您在每次创建新的App Widget时创建自己的稳定ID。您将在附加到App Widget的州中存储该ID,并使用它将其链接到您的一些数据(您以前应该在那里存储AppWidgetId)。这种间接性的原因是我们打算处理备份和还原,但AppWidget ID在此过程中会更改,因此在您自己的数据结构中依赖它们不是一个很好的方法。

要实现这一点,您可能需要查看GlanceAppWidget.stateDefinitionPreferencesGlanceStateDefinitionLocalStateGlanceAppWidget.updateAppWidgetState

这篇关于如何获取Compose Glance控件的AppWidgetID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)