我的主页是CarouselPage,它包含三页ContentPage类型的页面。
<CarouselPage
...some namespaces...
<CarouselPage.Children>
<pages:HomePageA />
<pages:HomePageB />
<pages:HomePageC />
</CarouselPage.Children>
</CarouselPage>
我使用JamesMontemagno的ConnectivityPlugin检查设备是否有互联网连接:
public partial class HomePage : CarouselPage
{
public HomePage()
{
InitializeComponent();
if (IsConnectionAvailable())
{
// download content from external db to device (SQLite db)
DisplayAlert("Internet connection found.", "Wait for the application data to update.", "OK");
}
else
{
DisplayAlert("No internet connection found.", "Application data may not be up to date. Connect to a working network.", "OK");
}
}
public bool IsConnectionAvailable()
{
if (!CrossConnectivity.IsSupported)
return false;
bool isConnected = CrossConnectivity.Current.IsConnected;
//return CrossConnectivity.Current.IsConnected;
return isConnected;
}
}
启动画面消失后,消息框无法显示。基于在调试时逐步执行代码我假设它有点显示然后在启动屏幕消失之前消失。
所以我尝试将ConnectivityPlugin代码放入HomePageA:ContentPage,其中一个是HomePage:CarouselPage的子节点。像这样:
public partial class HomePageA : ContentPage
{
public HomePageA()
{
InitializeComponent();
if (IsConnectionAvailable())
{
// download content from external db to device (SQLite db)
DisplayAlert("Internet connection found.", "Wait for the application data to update.", "OK");
}
else
{
DisplayAlert("No internet connection found.", "Application data may not be up to date. Connect to a working network.", "OK");
}
}
public bool IsConnectionAvailable()
{
if (!CrossConnectivity.IsSupported)
return false;
bool isConnected = CrossConnectivity.Current.IsConnected;
//return CrossConnectivity.Current.IsConnected;
return isConnected;
}
private void RegistrationButton_Clicked(object sender, System.EventArgs e)
{
}
}
现在,当我运行应用程序时,HomePageA会显示,但没有消息框。只有在我单击BurgerMenu并选择Home(有效选择HomePageA)后,才会弹出消息框。
同样的事情再次发生:
启动画面消失后,消息框无法显示。基于在调试时逐步执行代码我认为它有点显示然后在启动屏幕消失之前消失。
有人可以向我解释这种行为吗?
如何在启动画面消失后显示消息框?
谢谢大家。
===================== U P D A T E =====================
左翼并没有按照我希望的方式解释这个问题。对于所有善良的人,我找到了几个类似的问题和答案,并附有足够的解释。
可以找到一个不错的解释here和here另一个。
但是,我会接受Pavan的答案,因为它有效并且当时没有提供更好的答案。
答案 0 :(得分:3)
DisplayAlert用于在UI线程上执行某些操作。并且它是从后台线程调用的,以便操作UI,这只能在UI线程上完成。
请尝试以下代码显示警告消息,
Xamarin.Forms.Device.BeginInvokeOnMainThread(() =>
{
App.Current.MainPage.DisplayAlert("Internet connection found.", "Wait for the application data to update.", "OK");
});
它会帮助你