我是这个网站的新手,而且我是 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();
}
});
}
}
我会感谢所有的帮助。谢谢你。