私はXamarin Formsの最新バージョンを使用しています。私はコンテンツページを持っています。コンテンツページにはボタンがあるコンテンツがあります。そのボタンにはButton_Clickedイベントがあります。私はIToastNitificator(https://github.com/EgorBo/Toasts.Forms.Plugin)を使用して、私は私のアプリを閉じた後、この通知を送信し、私が通知をクリックした後、私のアプリケーションが再びポップアップしないときに渡そうとします。どのように私はこれに到達することができます誰も助けることができますか?Xamarinフォーム:Android:Toast Notifications Click
これは私のButton_Clicked方法である:私はこの依存関係を登録し、それがうまく働いて
private async void Button_Clicked(object sender, EventArgs e)
{
var notificator = DependencyService.Get<IToastNotificator>();
var options = new NotificationOptions()
{
Title = "Teszt",
Description = "Önnek teszteket kell kitöltenie!",
IsClickable = true
};
var result = await notificator.Notify(options);
if(result.Action == NotificationAction.Clicked)
{
await Navigation.PushAsync(new QuestionPage());
}
}
。私はこのNuGetパッケージを使用
var options = new NotificationOptions()
{
Title = "Teszt",
Description = "Önnek teszteket kell kitöltenie!",
IsClickable = true,
AndroidOptions = new AndroidOptions()
{
ForceOpenAppOnNotificationTap = true
}
};
:https://github.com/EgorBo
–はい私はMainActivityを見ることができる私の質問を更新しました –
瞬間を試してみます –