是否可以为整个Android应用程序配置错误页面(Activity)。

时间:2011-05-18 22:35:28

标签: android-manifest

我是Android应用程序的新手。在Web应用程序中,我们可以在web.xml中为整个应用程序配置错误页面。

就像那样,是否可以为整个Android应用程序配置错误页面(Activity)。

1 个答案:

答案 0 :(得分:1)

谈论网络应用程序(带有数据库连接而不是WebView的应用程序)我告诉你在使用整个活动之前考虑使用toast / notifications / Alerts:

请参阅this网络

对网页进行调整(使用WebView我告诉您使用从此Question中提取的代码:     

private int getRange() {
try {
    HttpURLConnection.setFollowRedirects(false);
    int Count = 1;
    URL testURL;
    while (true) {
        testURL = new URL(
                (myURL + "/" + Integer.toString(Count++) + ".jpg"));
        HttpURLConnection con = (HttpURLConnection) testURL
                .openConnection();
        con.setRequestMethod("HEAD");
        if (con.getResponseCode() == 404) {
            return Count - 2;
        }
        Log.e("RESPONCE", Integer.toString(con.getResponseCode()));
    }
} catch (Exception e) {

}enter code here
return 1;
}