网页加载错误显示错误网址问题
This commit is contained in:
parent
267d07f3a5
commit
99b9af2980
@ -152,8 +152,10 @@ public class ZhuangBanActivity extends AbsActivity {
|
|||||||
// 这个方法在6.0才出现
|
// 这个方法在6.0才出现
|
||||||
int statusCode = errorResponse.getStatusCode();
|
int statusCode = errorResponse.getStatusCode();
|
||||||
if (404 == statusCode || 500 == statusCode) {
|
if (404 == statusCode || 500 == statusCode) {
|
||||||
htmlError.setVisibility(View.VISIBLE);
|
if ( !request.getUrl().toString().contains("favicon.png")){
|
||||||
htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl());
|
htmlError.setVisibility(View.VISIBLE);
|
||||||
|
htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -209,8 +209,10 @@ public class LiveHDDialogFragment extends AbsDialogFragment {
|
|||||||
// 这个方法在6.0才出现
|
// 这个方法在6.0才出现
|
||||||
int statusCode = errorResponse.getStatusCode();
|
int statusCode = errorResponse.getStatusCode();
|
||||||
if (404 == statusCode || 500 == statusCode) {
|
if (404 == statusCode || 500 == statusCode) {
|
||||||
htmlError.setVisibility(View.VISIBLE);
|
if ( !request.getUrl().toString().contains("favicon.png")){
|
||||||
htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl());
|
htmlError.setVisibility(View.VISIBLE);
|
||||||
|
htmlError.setText("errorCode:" + statusCode +"\n failingUrl:" + request.getUrl());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user