广播接收器启动后未触发


无法

让我的 Xamarin.Android 应用程序在启动后触发 Toast。我检查了许多公认的解决方案,但似乎没有一个能解决我的问题。我也尝试了各种"工作"的例子,但没有任何运气,所以很明显我错过了一些东西。

设备: 三星银河S3原料药:19

安卓清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.novak" android:versionCode="1" android:versionName="1.0" android:installLocation="auto">
    <uses-sdk android:minSdkVersion="16" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <application android:label="ReceiverApp">
    <receiver android:enabled="true"
        android:exported="true"
        android-permission="android.permission.RECEIVE_BOOT_COMPLETED"
        android:name="com.novak.BootReceiver" >
      <intent-filter >
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <action android:name="android.intent.action.QUICKBOOT_POWERON" />
        <category android:name="android.intent.category.DEFAULT" />
      </intent-filter>
    </receiver>
  </application>
</manifest>

引导接收器.cs

using Android.App;
using Android.Widget;
using Android.Content;
namespace ReceiverApp
{
    [BroadcastReceiver]
    [IntentFilter(new[] { Intent.ActionBootCompleted })]
    public class BootReceiver : BroadcastReceiver
    {
        public override void OnReceive(Context context, Intent intent)
        {
            Toast.MakeText(context, "Receiver", ToastLength.Long).Show();
        }
    }
}

看来我想做的事情是不可能的。安装我的应用程序后,应用程序将处于停止状态,并且必须在第一次手动执行才能接收广播

[首次安装.apk时如何启动服务

PS:在真实设备上,触发事件需要一段时间,即:解锁三星屏幕后 2 分钟。在模拟器上,它需要很短的时间。

我写了下面的代码来注意它何时会触发:

自动运行.cs - 只需将此文件添加到您的项目中,就是这样,它将在启动后启动。无需修改清单。

using Android;
using Android.App;
using Android.Content;
// we need to ask permission to be notified of these events
[assembly: UsesPermission (Manifest.Permission.ReceiveBootCompleted)]
namespace XamarinCookbook
{
  // we want this to fire when the device boots
  [BroadcastReceiver]
  [IntentFilter (new []{ Intent.ActionBootCompleted })]
  public class ServiceStarter : BroadcastReceiver
  {
    public override void OnReceive (Context context, Intent intent)
    {
      #region Start chrome
      var mesaj = "Autorun started";
      Android.Widget.Toast.MakeText(Android.App.Application.Context, mesaj, Android.Widget.ToastLength.Long).Show();
      var uri = Android.Net.Uri.Parse("https://500px.com");
      var intent1 = new Intent(Intent.ActionView, uri);
      intent1.AddFlags(ActivityFlags.NewTask);
      intent1.SetPackage("com.android.chrome");
      try
      {
        context.StartActivity(intent1);
      }
      catch (ActivityNotFoundException ex)
      {
        //Chrome browser not installed
        intent.SetPackage(null);
        context.StartActivity(intent1);
      }
      #endregion
      /*
            #region Real code
            // just start the service
            var myIntent = new Intent (context, typeof(XamarinService));
          context.StartService (myIntent);
      #endregion
      */
    }
  }
}

VS 解决方案:

https://drive.google.com/open?id=1iYZQ2YCvBkyym9-2FvU7KXoBKUWsMdlT

最新更新