Android Widget:在窗口小部件添加到屏幕之前,显示配置活动

前端之家收集整理的这篇文章主要介绍了Android Widget:在窗口小部件添加到屏幕之前,显示配置活动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 Android小部件,它使用Web服务来检索和显示小部件上的数据.小部件具有扩展PreferenceActivity的配置活动.安装小部件后,即可启动配置活动,这是此小部件所需的行为.

问题是,无论何时将主窗口添加到主屏幕,窗口小部件会尝试在启动/完成配置活动之前自己更新,这可能会导致长时间的延迟(几秒钟).配置活动应该在widget添加之前尝试更新自己的任何东西.

以下是在添加小部件时在LogCat中看到的事件序列:

> Widget.onRecive:action = APPWIDGET_ENABLED
> Widget.onEnabled
> Widget.onReceive:action = APPWIDGET_UPDATE
> Widget.onUpdate:启动Widget服务.
> WidgetService.onStartCommand:潜在的长时间运行的工作,将延迟配置活动立即显示.
> WidgetConfiguration.on创建
> Widget.onReceive:action = APPWIDGET_UPDATE
> Widget.onUpdate:Widget服务再次启动
> WidgetService.onStartCommand:可能长时间运行的工作再次执行.

发生的情况是,当添加窗口小部件时,服务将在配置视图显示之前启动.

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxx.xxx.xxxwidget"
    android:versionCode="1"
    android:versionName="@string/app_version" >

    <uses-sdk android:minSdkVersion="8" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:debuggable="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <receiver android:name="xxxWidget" >
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <Meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/widget_info" />
        </receiver>

        <activity android:name="xxxWidgetConfigure" >
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <service android:name="xxxWidgetService" />
    </application>

</manifest>@H_403_21@ 
 


在系统尝试将窗口小部件添加到主屏幕之前,是否有办法强制配置活动显示

解决方法

从android文档:
http://developer.android.com/guide/topics/appwidgets/index.html#Configuring

The onUpdate() method will not be called when the App Widget is created (the system will not send the ACTION_APPWIDGET_UPDATE broadcast when a configuration Activity is launched). It is the responsibility of the configuration Activity to request an update from the AppWidgetManager when the App Widget is first created. However,onUpdate() will be called for subsequent updates—it is only skipped the first time.

不过,这似乎并不正确!

我做了什么是向SharedPreferences添加一个布尔值,告诉我这个widgetId是否已经通过配置.如果不跳过此更新.在你的AppWidgetProvider类’onUpdate方法中实现这一点.

原文链接:https://www.f2er.com/android/312621.html

猜你在找的Android相关文章