我正在制作一个简单的应用程序小部件,当触摸小部件中的按钮时,它会显示一条吐司消息。我遇到的问题是单击按钮时吐司永远不会出现。事实上,当按钮被触摸时,onReceive 事件永远不会被触发。我怀疑这个问题与我的清单有关,但对我来说看起来没问题。
这是我的清单的相关部分:
<receiver android:name=".GPSWidget" android:label="GPS Receiver">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="luke.app.steal.GPSWidget.ACTION_WIDGET_RECEIVER"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_provider" />
</receiver>
这是将按钮“连接”到事件侦听器的代码,以及它位于名为 GPSReceiver 的类中的 onReceive 事件。
public static String ACTION_WIDGET_RECEIVER = "ActionReceiverWidget";
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(ACTION_WIDGET_RECEIVER)) {
Toast.makeText(context, "Button hit", Toast.LENGTH_SHORT).show();
}
super.onReceive(context, intent);
}
@Override
public void onUpdate( Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds )
{
RemoteViews remoteViews;
remoteViews = new RemoteViews( context.getPackageName(), R.layout.gpswidget );
remoteViews.setTextViewText( R.id.widgetTexts, "Click Me!");
Intent inte = new Intent(context, lukeService.class);
inte.setAction(ACTION_WIDGET_RECEIVER);
PendingIntent configPendingIntent = PendingIntent.getBroadcast(context, 0, inte, 0);
remoteViews.setOnClickPendingIntent(R.id.widgetTexts, configPendingIntent);
appWidgetManager.updateAppWidget(appWidgetIds, remoteViews );
}
widgetTexts 是应该启动 toast 的按钮,但就像我说的那样,当按下按钮时什么都没有发生。我认为我在清单中的路径是错误的,luke.app.steal,但同样的路径适用于我的所有其他活动。
有人有什么想法吗?或需要更多信息?