在使用Wamp的android mysql中,当匹配echo时Intent没有打开,而在其他情况下echo不打印

时间:2018-03-27 20:58:39

标签: php android wamp

我正在使用Wamp on Below case练习Android Studio,登录成功时消息正在打印并且打开意图,注册成功时消息未打印且Intent未打开但数据正在表中插入

Android Java背景任务代码

alpha-test

PHP代码

 @Override
protected void onPostExecute(String result) {
    super.onPostExecute(result);
    if(result!= null && result.equalsIgnoreCase("Registration Succesful")) {
        alertDialog.setMessage(result);
        alertDialog.show();
        Intent intent = new Intent(context, forgot.class);
        context.startActivity(intent);
    } else if(result!= null && result.equalsIgnoreCase("Login Successful")) {
        alertDialog.setMessage(result);
        alertDialog.show();
        Intent intent = new Intent(context, afterlogin.class);
        context.startActivity(intent);
    } }

错误

  

W / audio_hw_generic:没有向HAL提供足够的数据,预期位置4663937,只写了4663440

0 个答案:

没有答案