处理 Glance 中的错误

从 Android 15 开始,包含了用于改进 Glance 上错误处理的 API 功能。此页面提供了一些关于这些 API 的最佳实践。

在非可组合组件周围使用 try-catch 块

Compose 不允许在可组合项周围使用 try-catch 块,但允许您将应用的其他逻辑包装在这些块中。这使您可以将 Compose 用于错误视图,如下例所示

provideContent {
       var isError = false;
       var data = null
       try {
           val repository = (context.applicationContext as MyApplication).myRepository
           data = repository.loadData()
       } catch (e: Exception) {
           isError = true;
           //handleError
       }

       if (isError) {
           ErrorView()
       } else {
           Content(data)
       }
   }

默认错误布局

如果存在未捕获的异常或 Compose 错误,Glance 会显示默认错误布局

An error message showing the type of error and a suggestion for where
  to look for it
图 1.Glance 1.0 默认错误布局
A box with the text 'Can't show content'
图 2.Glance 1.1.0 默认错误布局

如果组合失败,Glance 允许开发者提供一个 XML 布局作为后备。这意味着 Compose 代码中存在错误。如果您的应用代码中存在未捕获的错误,也会出现此错误 UI。

class UpgradeWidget : GlanceAppWidget(errorUiLayout = R.layout.error_layout)

此布局是一个静态布局,用户无法与其交互,但在紧急情况下很有用。

Contains a heading and a text field to display an error message
图 3.自定义错误布局示例

向默认错误 UI 添加操作

从 Glance 1.1.0 开始,Glance 允许您覆盖默认错误处理代码。这样,您可以在发生未捕获的异常或组合错误时添加操作回调。

要使用此功能,请覆盖 onCompositionError() 函数

GlanceAppWidget.onCompositionError(
    context: Context,
    glanceId: GlanceId,
    AppWidgetId: Int,
    throwable: Throwable
)

在此函数中,Glance 回退到 RemoteViews API 进行错误处理。这使您可以使用 XML 指定布局和操作处理程序。

以下示例逐步向您展示如何创建包含发送反馈按钮的错误 UI

  1. 编写 error_layout.xml 文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   style="@style/Widget.MyApplication.AppWidget.Error"
   android:id="@android:id/background"
   android:layout_width="match_parent"
   android:textSize="24sp"
   android:layout_height="match_parent"
   android:orientation="vertical">


   <TextView
       android:id="@+id/error_title_view"
       android:layout_width="match_parent"
       android:textColor="@color/white"
       android:textFontWeight="800"
       android:layout_height="wrap_content"
       android:text="Example Widget Error" />

   <LinearLayout
       android:layout_width="match_parent"
       android:orientation="horizontal"
       android:paddingTop="4dp"
       android:layout_height="match_parent">

       <ImageButton
           android:layout_width="64dp"
           android:layout_height="64dp"
           android:layout_gravity="center"
           android:tint="@color/white"
           android:id="@+id/error_icon"
           android:src="@drawable/heart_broken_fill0_wght400_grad0_opsz24"
       />
       <TextView
           android:id="@+id/error_text_view"
           android:layout_width="wrap_content"
           android:textColor="@color/white"
           android:layout_height="wrap_content"
           android:layout_gravity="center"
           android:padding="8dp"
           android:textSize="16sp"
           android:layout_weight="1"
           android:text="Useful Error Message!" />
   </LinearLayout>

</LinearLayout>

  1. 覆盖 onCompositionError 函数
override fun onCompositionError(
   context: Context,
   glanceId: GlanceId,
   AppWidgetId: Int,
   throwable: Throwable
) {
   val rv = RemoteViews(context.packageName, R.layout.error_layout)
   rv.setTextViewText(
       R.id.error_text_view,
       "Error was thrown. \nThis is a custom view \nError Message: `${throwable.message}`"
   )
   rv.setOnClickPendingIntent(R.id.error_icon, getErrorIntent(context, throwable))
   AppWidgetManager.getInstance(context).updateAppWidget(AppWidgetId, rv)
}

  1. 创建一个引用您的 GlanceAppWidgetReceiver 的挂起意图
private fun getErrorIntent(context: Context, throwable: Throwable): PendingIntent {
    val intent = Intent(context, UpgradeToHelloWorldPro::class.java)
    intent.setAction("widgetError")
    return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_IMMUTABLE)
}

  1. 在您的 GlanceAppWidgetReceiver 中处理意图
override fun onReceive(context: Context, intent: Intent) {
   super.onReceive(context, intent)
   Log.e("ErrorOnClick", "Button was clicked.");
}