0

我是这个网站的新手,而且我是 android 编程的新手,所以你必须对我有点耐心。我启动了一个应用程序来连接 mysql 数据库,但是 asynctask 不会启动,应用程序在上课前就停止了,我真的不知道为什么。那你能帮帮我吗?这是我的代码:

public class Logar extends Activity {
EditText etUsuario, etSenha;
Button btLogin;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.logar);

    etUsuario=(EditText) findViewById(R.id.editUsuario);
    etSenha=(EditText) findViewById(R.id.editSenha);
    btLogin=(Button) findViewById(R.id.button1);



    btLogin.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            Log.i("logar", "entrou no evento");
            ArrayList<NameValuePair> parametrosPost = new ArrayList<NameValuePair>();
            parametrosPost.add(new BasicNameValuePair("usuario",etUsuario.getText().toString()));
            parametrosPost.add(new BasicNameValuePair("senha",etSenha.getText().toString()));
            Log.i("logar", "parametrosPost.add");



        }




class LoginTask extends AsyncTask<Void,Void,Void>{
    ArrayList<NameValuePair> parametrosPost = new ArrayList<NameValuePair>();
    String urlPost="http://192.168.1.131/android/logar.php";
    String urlGet="http://192.168.1.131/android/logar.php?usuario="+etUsuario.getText().toString()+"&senha="+etSenha.getText().toString();
    String respostaRetornada = null;
    @Override
    protected Void doInBackground(Void... args){
            Log.i("logar", "vai entrar no try");
            try {
                respostaRetornada = ConexaoHttpClient.executaHttpPost(urlPost, parametrosPost);
                //respostaRetornada = ConexaoHttpClient.executaHttpGet(urlGet);
                String resposta = respostaRetornada.toString();
                Log.i("logar", "resposta = "+resposta);
                resposta = resposta.replaceAll("\\s+", "");
                if (resposta.equals("1"))
                     startActivity(new Intent(Logar.this,MenuPrincipal.class));
                    //mensagemExibir("Login", "Usuario Válido PARABÉNS ");
                else
                    mensagemExibir("Login", "Usuario Inválido ????");
            }
            catch(Exception erro)
            {
                Log.i("erro", "erro = "+erro);
                Toast.makeText(Logar.this, "Erro.: "+erro, Toast.LENGTH_LONG).show();
            }
            return null;

        }


}
   public void mensagemExibir(String titulo, String texto)
   {
        AlertDialog.Builder mensagem = new AlertDialog.Builder(Logar.this);
        mensagem.setTitle(titulo);
        mensagem.setMessage(texto);
        mensagem.setNeutralButton("OK",null);
        mensagem.show();
   }
});
}
}

我会感谢所有的帮助。谢谢你。

4

3 回答 3

0

你必须打电话

new LoginTask().execute();

某处。

于 2013-11-13T21:11:33.740 回答
0

要启动它,AsyncTask您需要调用它的execute()方法(或者可能executeOnExecutor),这在您显示的代码中是不可见的。

于 2013-11-13T21:12:01.407 回答
0

您不能从 doInBackground 方法中显示 AlertDialog。

需要在 UI 线程上显示警报对话框,因此您应该从 doInBackground 方法返回结果,并在 onPostExecute 方法中处理结果(并显示警报对话框)。

于 2013-11-13T21:12:37.577 回答