如何测试我的小部件的onUpdate方法不等待30分钟

Vit*_*lov 6 android widget onupdate

学习小部件3天后,我终于了解了setOnClickPendingIntent,RemoteViews ......我已经完成了我的小部件.它已经在很多教程的帮助下完成了.但现在我想测试它是否有效.在我读到的时候,最低更新率是30分钟.另一种方法是使用AlarmManager.但是我找不到AlarmManager的任何例子.等了30分钟后,什么也没发生.我改变了一些东西,还在等待,它改变了......

有没有办法更快地测试它?

 <?xml version="1.0" encoding="utf-8" ?>
    <appwidget-provider
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="65dip"
    android:minHeight="30dip"

    android:updatePeriodMillis="180000"
    android:initialLayout="@layout/main" />
Run Code Online (Sandbox Code Playgroud)

CountWidget

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.widget.RemoteViews;

public class CountWidget extends AppWidgetProvider {
    private static final int[] IMAGES = { R.drawable.die_1, R.drawable.die_2,
            R.drawable.die_3, R.drawable.die_4, R.drawable.die_5,
            R.drawable.die_6 };
    public static String ACTION_WIDGET_RECEIVER = "ActionReceiverWidget";
    public static String ACTION_WIDGET_CONFIGURE = "ConfigureWidget";

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager,
            int[] appWidgetIds) {
        ComponentName me = new ComponentName(context, CountWidget.class);

        appWidgetManager
                .updateAppWidget(me, buildUpdate(context, appWidgetIds));

        // ????????? ??????
        // appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);

    }

    private RemoteViews buildUpdate(Context context, int[] appWidgetIds) {

        // ??????? ????? RemoteViews
        RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
                R.layout.main);

        remoteViews.setImageViewResource(R.id.left_die, IMAGES[(int) (Math
                .random() * 6)]);

        // ?????????????? Intent ??? Broadcast
        Intent configIntent = new Intent(context,
                CountWhatYouWantActivity.class);
        configIntent.setAction(ACTION_WIDGET_CONFIGURE);

        // ??????? ???? ???????
        PendingIntent configPendingIntent = PendingIntent.getActivity(context,
                0, configIntent, 0);

        // ???????????? ???? ???????

        remoteViews.setOnClickPendingIntent(R.id.left_die, configPendingIntent);
        return (remoteViews);
    }
Run Code Online (Sandbox Code Playgroud)

小智 1

这可能有帮助:

private static Intent updateIntent = new Intent();
{
    updateIntent.setAction(WidgetProvider.ACTION_WIDGET_UPDATE);
    updateIntent.setData(Uri.withAppendedPath(Uri.parse(WidgetProvider.URI_SCHEME + "://widget/id/"), ""));
}

private void setAlarm(Context context) {
    PendingIntent newPending = PendingIntent.getBroadcast(context, 0, updateIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    Time now = new Time();
    now.setToNow();
    long nowMillis = now.toMillis(false);
    long nextMillis = ((nowMillis / 60000) * 60000) + 60000;

    AlarmManager alarms = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
    // set the repeating real time clock minute synchronised alarm
    alarms.setRepeating(AlarmManager.RTC_WAKEUP, nextMillis, 60 * 1000, newPending);

}
Run Code Online (Sandbox Code Playgroud)

在 AppWidgetProvider 的 onEnabled() 方法中调用 setAlarm() 函数。