Android - Session Cookies
问题 I need to authenticate username and password with my website which provides Session Cookies. I am collecting username and password from the EditText on the form and passing it onto authenticate session. @Override public void onClick(View v) { String Username = username.getText().toString(); String Password = password.getText().toString(); String value = LoginAuthenticate.getSessionCookie(Username, Password); //This is just check what session value is brought back username.setText(value); }