我是这个网站的新手,而且我是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();
}
});
}
}
我会赐予所有帮助。谢谢。
答案 0 :(得分:0)
你必须致电
new LoginTask().execute();
的某个地方。
答案 1 :(得分:0)
要启动AsyncTask
,您需要调用execute()
方法(或executeOnExecutor
),这在您显示的代码中不可见。
答案 2 :(得分:0)
您无法在doInBackground方法中显示AlertDialog。
需要在UI线程上显示警告对话框,因此您应该从doInBackground方法返回结果,并在onPostExecute方法中处理结果(并显示警告对话框)。