我正在创建一个服务,并且将有多个应用程序与服务进行通信。所以我希望服务在全局进程中运行,即进程对任何应用程序都不是私有的。 以下是我的清单文件的内容。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.username.servicedemo" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="com.example.username.servicedemo.FirstService"
android:process="com.example.username.servicedemo.remote"
android:enabled="true"
android:exported="true" >
</service>
</application>
process
下的service
属性将创建一个全局流程。
问题是,当我尝试从按钮上的service
开始activity
时,点击onCreate
service
方法中的public void startService (View view) {
int id = android.os.Process.myPid();
Log.i("MYTAG", " process id activity" + Integer.toString(id)
);
Intent intent = new Intent(this,FirstService.class);
intent.putExtra("key","1234");
ComponentName componentName = this.startService(intent);
Log.i("MYTAG",componentName.toString());
}
方法。这是在按钮单击
app-id.appspot.com -> mycustomdomain.com
www.mycustomdomain.com -> mycustomdomain.com
我在这里缺少什么?谢谢!