为什么我的应用程序中出现服务器错误(服务器错误“服务器未在我的直播电视应用程序中连接”)

问题描述 投票:0回答:1

Here the image of the error

我是开发应用程序领域的新手,我正在尝试创建一个应用程序,但是当我尝试将其安装在手机上进行测试时,安装后出现服务器未连接的错误

所以,任何人都可以解决这个问题,我不知道如何解决这个问题,因为我尝试过,但徒劳, 我该怎么办?

javascript java server syntax-error
1个回答
0
投票
@Override
            public void onEnd(String success, boolean verifyStatus, String message, ArrayList<ItemPlan> itemPlans) {
                if (success.equals("1")) {
                    if (verifyStatus) {
                        rv.setVisibility(View.VISIBLE);
                        pb.setVisibility(View.GONE);
                        mListItem.addAll(itemPlans);
                        displayData();
                    }else {
                        helper.getVerifyDialog(getString(R.string.error_unauthorized_access), message);
                    }
                }else {
                    error_msg = getString(R.string.error_server_not_connected);
                    setEmpty();
                }
            }
        }, helper.callAPI(Callback.METHOD_PLAN, 0, "", "", "", "", "", "", "", "", "", "", "", "", null));
        loadPlan.execute();
    } else {
        error_msg = getString(R.string.error_internet_not_connected);
        setEmpty();
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.