我仍然无法在窗口小部件中执行高级操作。让我说我有一种方法可以执行诸如打开手电筒之类的操作。如何使用Async,服务等方式从窗口小部件调用此方法。 .. 我的代码(小工具):
public class QFlashlightWidgetProvider extends AppWidgetProvider {
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
// 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 QFlashlightActivity
Intent intent = new Intent(context, ScreenLight.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 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.qflashlight_appwidget);
views.setOnClickPendingIntent(R.id.btn1, pendingIntent);
// Tell the AppWidgetManager to perform an update on the current app widget
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
}
请使用任何代码来支持我,这些代码在点击小部件时至少可以调用toast消息。这只是一个小部件,一旦点击就会打开我的活动。
答案 0 :(得分:0)
我已经解决了这个问题。问题是该程序在已经开启的情况下正在开启。
What the program does?
第一次点击小部件时,led被打开,布尔值变为false。
Problem
该程序将布尔值设为false,因为它不是static