基本的に、データベース側にいくつかのメンバーを設定しました。データベースにデータを投稿する登録フォームも作成しましたが、プログラムがアクティビティを開始しないという問題があります。httppost の部分をコメントアウトすると機能するので、私の問題はすべて PHP ファイルに関係していると思いますが、私が行った Java コードを投稿しました。別の質問では、PHP コードを投稿します。
try
{
httpclient = new default HttpClient();
httppost = new HttpPost("");
nameValuePair = new arrayList < NameValuePair > (1);
nameValuePair . add(new BasicNameValuePair("email", email . getText() . toString() . trim()));
nameValuePair . add(new BasicNameValuePair("password", password . getText() . toString() . trim()));
httppost . setEntity(new UrlEncodedF or mEntity(nameValuePair));
response = httpclient . execute(httppost);
ResponseHandler < String > responseHandler = new BasicResponseHandler();
final Stringresponse = httpclient . execute(httppost, responseHandler);
loginErrorMsg . setText("" + response);
if(response . equalsIgnorecase ("Log in Successful"))
{
startActivity(new Intent(LoginActivity . this, HomescreenActivity . class ));
}
}
catch(Exceptione)
{
e.printStackTrace();
}