我解释了我希望我的应用程序做什么:
用户打开电话,我的服务启动并执行他的代码。 问题在于,目前该服务无法启动...我看不到日志或吐司。
这是清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="complic.bevoip">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.RECEIVE_REBOOT" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
...
<service
android:name=".Sip.SipService"
android:enabled="true"
android:exported="true"></service>
<receiver android:name=".Sip.Receiver"
android:process=":remote">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<action android:name="android.intent.action.REBOOT"/>
</intent-filter>
</receiver>
</application>
</manifest>
广播接收器
public class Receiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
Log.d("MIO", "abcde");
Intent i = new Intent(context, MainActivity.class);
context.startService(new Intent(context, SipService.class));
}
}
和服务
public class SipService extends Service {
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
Log.d("BeVoip", "service partito");
startActivity(new Intent(this, MainActivity.class));
return Service.START_STICKY;
}
@Override
public void onDestroy() {
super.onDestroy();
Toast.makeText(this, "Service Destroy", Toast.LENGTH_LONG).show();
}
}
答案 0 :(得分:2)
未调用您的Function Sub1() As Worksheet
Set Sub1 = ThisWorkbook.Worksheets("Sheet2")
End Function
Sub Sub2()
Dim test As String
test = ThisWorkbook.Worksheets("Sheet1").Range("B3")
If test = "here" Then
Sub1.Range("A2") = test
End If
End Sub
,因为定位到Android 7.0 (API级别24)及更高版本的应用必须在BroadcastReceiver
处注册以下广播。
在清单中声明接收者无效
您将必须通过以下方式动态注册接收器。
registerReceiver(BroadcastReceiver, IntentFilter)
关于 Receiver myReceiver = new Receiver ();
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(Intent.ACTION_BOOT_COMPLETED);
intentFilter.addDataScheme("package");
getApplicationContext().registerReceiver(myReceiver, intentFilter);
广播接收机应在其中运行的android:process=":remote"
。应用程序的所有组件都在为该应用程序创建的默认过程中运行。它与应用程序包同名。
如果分配给此属性的名称以冒号(':')开头,则会在需要时创建一个专用于应用程序的新进程,并且广播接收器将在该进程中运行。
您可以在此处阅读有关process
属性的信息:
https://developer.android.com/guide/topics/manifest/receiver-element
您可以在此处参考receiver
的文档:
https://developer.android.com/guide/components/broadcasts