从另一个应用程序启动Android服务以初始化它

时间:2014-04-03 21:24:23

标签: android service widget

是否可以从应用程序B中的服务(窗口小部件)启动App A中的服务,如果安装了应用程序A但从未由用户手动打开过?

我很想知道因为似乎以前没有明确启动的应用程序有很多限制。

1 个答案:

答案 0 :(得分:1)

是的,您可以使用小部件来实现。你去.. ..

我在App B中有一个小部件,如下所示..

public class CustomAppWidgetProvider extends AppWidgetProvider{
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    final int N = appWidgetIds.length;

    for (int i = 0; i < N; i++) {
        int appWidgetId = appWidgetIds[i];

        RemoveControlWidget removeControlWidget = new RemoveControlWidget(context,context.getPackageName(), R.layout.widget_play_layout);

        appWidgetManager.updateAppWidget(appWidgetId, removeControlWidget);
    }
    super.onUpdate(context, appWidgetManager, appWidgetIds);
 }
}

我的自定义远程视图(带有按钮id play_control的布局)

public class RemoveControlWidget extends RemoteViews {

public static final String ACTION_PLAY = "com.example.app.ACTION_PLAY";

public RemoveControlWidget(Context context, String packageName, int layoutId) {
    super(packageName, layoutId);
    Intent intent = new Intent(ACTION_PLAY);
    PendingIntent pendingIntent = PendingIntent.getService(context.getApplicationContext(), 100,
            intent, PendingIntent.FLAG_UPDATE_CURRENT);
    setOnClickPendingIntent(R.id.play_control, pendingIntent);
 }
}

现在,我的App A中有一个自定义服务,会显示通知。

这是需要在清单

中提供的内容
<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <service android:name=".CustomService">

        <intent-filter >
            <action android:name="com.example.app.ACTION_PLAY"/>
            <category android:name="android.intent.category.DEFAULT"></category>
        </intent-filter>
    </service>
</application>