複製代碼 代碼如下:public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.splash);
ConnectivityManager cwjManager=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo info = cwjManager.getActiveNetworkInfo();
if (info != null && info.isAvailable()){
super.loadUrl("http://www.xxx.com",4500);
}
else
{
super.loadUrl("file:///android_asset/www/error.html", 4500);
}
}
解釋下 第四行 顯示啟動畫面
第七行判斷是否連網 如果連網載入遠程地址 如果不連網載入本地地址
別忘網路許可權
error.html錯誤介面代碼
主要js代碼 複製代碼 代碼如下:document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
checkConnection();
document.addEventListener("backbutton", eventBackButton, false); //返回鍵
//document.addEventListener("menubutton", eventMenuButton, false); //menu
}
function checkConnection() {
var networkState = navigator.network.connection.type;
if( networkState == Connection.NONE ) {
navigator.notification.confirm('請確認網路連接已經開啟', showAlert , '提示', '確定');
return false;
}
}
function showAlert(button) {
if( button==1 ) {
navigator.app.exitApp();
}
return false;
}
function eventBackButton(){
navigator.notification.confirm('確認退出?', showConfirm, '退出軟體', '確定,取消');
}
function showConfirm(button) {
if( button==1 ) {
document.removeEventListener("backbutton", eventBackButton, false); //登出返回鍵
navigator.app.exitApp();
}
}
曾經有人很奇怪為什麼要用java判斷是否連網而不直接在js裡面判斷主要原因:
1,不願意讓他顯示www.xxxxx.com網址不能訪問情況
2,避免直接存取實際網址
3,而且免去本地判斷跳轉遠程地址中間空白頁面