4
我需要創建一個Widget,一旦點擊它即可啓動服務。服務會執行某些操作,更改小部件圖片,播放聲音等,然後停止。Android Widget不會啓動服務
的AppWidgetProvider:
public class WidgetActivity extends AppWidgetProvider {
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
Intent intent = new Intent(context.getApplicationContext(), SilentService.class);
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);
PendingIntent pendingIntent = PendingIntent.getService(
context.getApplicationContext(), 0, intent,
PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.LinLayWiget, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);
context.startService(intent);
}
}
服務:
public class SilentService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Toast.makeText(this, "I'm Alive!", 1500).show();
MediaPlayer mpl = MediaPlayer.create(this, R.raw.enter);
mpl.start();
}
@Override
public void onDestroy() {
//code to execute when the service is shutting down
}
@Override
public void onStart(Intent intent, int startid) {
//code to execute when the service is starting up
}
}
清單:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="FX.Widget"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<receiver android:name="widget.cam.com.WidgetActivity" android:label="FXMaster" android:icon="@drawable/assiconwi">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.appwidget.action.APPWIDGET_ENABLED"/>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widgetprovider" />
</receiver>
<service
android:enabled="true"
android:name=".SilentService">
</service>
</application>
</manifest>
但是,一旦我點擊窗口小部件,沒有任何反應......任何想法,爲什麼?
謝謝!
謝謝,我已經收窄,使用教程,但仍是點擊不來通過。請參閱 - http://stackoverflow.com/questions/9242039/android-widget-wont-have-a-click – 2012-02-11 16:55:04
解決了它!在示例的源代碼中,有一個main.xml文件,它似乎與應用程序的其餘部分無關!但是如果沒有它,點擊功能將不起作用。 :) – 2012-02-11 22:03:42