带按钮的Android小部件,删除更新

时间:2014-01-09 14:38:43

标签: android android-widget

我正在创建一个简单的Android Widget,它将具有在应用程序中打开不同活动的按钮。

public class ExampleAppWidgetProvider extends AppWidgetProvider {

  public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    final int N = appWidgetIds.length;

    Log.i("ExampleWidget",  "Updating widgets " + Arrays.asList(appWidgetIds));

    // Perform this loop procedure for each App Widget that belongs to this
    // provider
    for (int i = 0; i < N; i++) {
      int appWidgetId = appWidgetIds[i];

      // Create an Intent to launch ExampleActivity
      Intent intentForHome = new Intent(context, WidgetExampleActivity.class);
      PendingIntent pendingIntentForHome = PendingIntent.getActivity(context, 0, intentForHome, 0);
      // Get the layout for the App Widget and attach an on-click listener
      // to the button
      RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget1);
      views.setOnClickPendingIntent(R.id.button, pendingIntentForHome);

      // Create an Intent to launch Second Activity
      Intent intentForSecond = new Intent(context, SecondActivity.class);
      PendingIntent pendingIntentForSecond = PendingIntent.getActivity(context, 0, intentForSecond, 0);
      // Get the layout for the App Widget and attach an on-click listener
      // to the button
      views.setOnClickPendingIntent(R.id.button2, pendingIntentForSecond);


      // Tell the AppWidgetManager to perform an update on the current app
      // widget
      appWidgetManager.updateAppWidget(appWidgetId, views);
    }
  }
}

这可以通过每个按钮打开正确的活动。 但我只是想知道, updatePeriodMillis 的用途是什么。我不需要Widget中的任何内容进行更新,只需按钮即可打开应用程序。我可以摆脱更新部分吗?我不希望我的应用程序继续更新小部件。

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="294dp"
    android:minHeight="72dp"
    android:updatePeriodMillis="10000"
    android:initialLayout="@layout/widget1">
</appwidget-provider>

这也是从Widget执行按钮点击的正确方法。我在一些教程中看到它的完成方式不同? 谢谢。

2 个答案:

答案 0 :(得分:0)

updatePeriod用于在某个时间间隔内刷新窗口小部件。如果您不需要,请将updatePeriodMillis设置为0

答案 1 :(得分:0)

This page描述了如何使用按钮创建小部件。如果您不需要将窗口小部件修复updatePeriodMillis更新为0.请注意,您不能使用频率低于15分钟的updatePeriodMillis且没有关于刷新频率的保证(可能会有一些延迟) )。如果要使用修复频率刷新,请使用Alarm或注册到Intent.ACTION_TIME_TICK并自行管理

对于处理按钮事件,这是正确的方法,因为它是Android页面提到的那个(上图)。