我正在做一个Android游戏应用程序。我的主要活动扩展了BaseGamesActivity,因此当您启动应用程序时,它会自动连接到Google Play。我希望游戏可以离线播放。当设备未连接到互联网时,有没有办法让应用程序不尝试连接谷歌播放?
答案 0 :(得分:0)
如果连接失败,您仍然可以尝试连接到Google Play,只需执行其他操作(启动离线播放)。
int resp = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
if(resp == ConnectionResult.SUCCESS){
// Start online play
/* actually connect to Google Play here */
}
else{
// Start offline play
}