任何人都告诉我,在玩游戏时接收来电时,如何在Windows Phone 8中获得控制权?
接听来电时是否会触发任何功能?
有人帮忙解决这个问题吗?
答案 0 :(得分:2)
如果有任何人遇到同样问题以下将是解决方案如果您使用的是Unity Engine。
//For interrupt handling
private bool isGameInterrupted;
void OnApplicationPause(bool isInterrupted)
{
if( !isGameInterrupted && isInterrupted )
{
isGameInterrupted = true;
}
if( isGameInterrupted )
{
// Call your pause screen here //
isGameInterrupted = false;
}
}
答案 1 :(得分:1)