gpt4 book ai didi

android - DisplayAlert 方法导致 xamarin.form 崩溃

转载 作者:行者123 更新时间:2023-12-02 08:05:52 24 4
gpt4 key购买 nike

我在我的 xamarin 表单应用程序中使用了两个条目。我想检查用户何时单击按钮,如果这些条目为空,则显示错误。目前我正在使用以下方法:

            if (string.IsNullOrEmpty(EnAirflow.Text) || string.IsNullOrEmpty(EnPressure.Text))
{
DisplayAlert("Error", "Please fill all required information.", "OK");

}

该代码在模拟器的 Debug模式下运行良好。但是当我将其更改为 Release模式或从中创建 apk 文件并在物理设备上进行测试时,它会导致崩溃。
你能指导我如何解决这个问题。

最佳答案

请检查这个

Device.BeginInvokeOnMainThread(() =>
{
DisplayAlert("Error", "Please fill all required information.", "OK");
});

关于android - DisplayAlert 方法导致 xamarin.form 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59677111/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com