如何从另一个 Android Xamarin 应用程序打开一个 Android Xamarin 应用程序?

How do I open an Android Xamarin application from another Android Xamarin application?

我在启动 Instagram 应用程序后尝试打开我的 Android Xamarin 应用程序。要打开 Instagram,我正在使用:

Intent InstagramIntent = PackageManager.GetLaunchIntentForPackage("com.instagram.android");
                StartActivity(InstagramIntent);

如何打开我自己的应用程序或另一个 Android Xamarin 应用程序?

https://developer.xamarin.com/recipes/cross-platform/app-links/app-links-android/

或者专门针对 android,您可以使用意图过滤器,https://developer.xamarin.com/api/type/Android.App.IntentFilterAttribute/