我需要处理器抓住小部件的地方。有类似的东西吗?我试过了$scope.sendMail("foo@bar.com","Mail Subject","Mail Body Message");
但没有按照我的需要工作。
请帮忙。感谢。
答案 0 :(得分:0)
@Override
public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions) {
super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId, newOptions);
try {
//open selection
Intent intn = new Intent (context, DialogSelect.class);
intn.setFlags (Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intn);
} catch (Exception e) {Toast.makeText(context, e.getMessage(), Toast.LENGTH_LONG).show();}
updateAppWidget(context, appWidgetManager, appWidgetId);
}
覆盖方法不起作用