Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8236817
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:15:35+00:00 2026-06-07T19:15:35+00:00

I have developed a login form (username,password and submit button) using a MySQL connection

  • 0

I have developed a login form (username,password and submit button) using a MySQL connection through soap webservices in my android application.Here I wish to add a “remember password field”.
I have written this code in the XML resource for the activity:

 <?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<EditText
    android:id="@+id/tf_userName"
    android:layout_width="194dp"
    android:layout_height="wrap_content"
    android:layout_x="106dp"
    android:layout_y="80dp" >

    <requestFocus />
</EditText>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="23dp"
    android:layout_y="93dp"
    android:text="User name" />



<EditText
    android:id="@+id/tf_password"
    android:layout_width="189dp"
    android:layout_height="wrap_content"
    android:layout_x="108dp"
    android:layout_y="161dp"
    android:inputType="textPassword" />

<TextView
    android:id="@+id/TextView01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="23dp"
    android:layout_y="176dp"
    android:text="Password" />
   <CheckBox android:layout_below="@+id/passwordview"
    android:layout_width="wrap_content" android:text="Remember Password!"
    android:layout_height="wrap_content" android:id="@+id/rempasswordcheckbox" 
    android:layout_x="23dp"
    android:layout_y="200dp" />

<Button
    android:id="@+id/btn_login"
    android:layout_width="106dp"
    android:layout_height="wrap_content"
    android:layout_x="50dp"
    android:layout_y="273dp"
    android:text="Login" />
<TextView
    android:id="@+id/TextView03"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_x="50dp"
    android:layout_y="350dp"
    android:text="Forget My password ?: Click here" />

<Button
    android:id="@+id/btn_reg"
    android:layout_width="106dp"
    android:layout_height="wrap_content"
    android:layout_x="175dp"
    android:layout_y="273dp"
    android:text="Register" />
 <Button
    android:id="@+id/btn_logout"
    android:layout_width="106dp"
    android:layout_height="wrap_content"
    android:layout_x="215dp"
    android:layout_y="25dp"
    android:text="Logout" />

<TextView
    android:id="@+id/tv_status"
    android:layout_width="151dp"
    android:layout_height="38dp"
    android:layout_x="26dp"
    android:layout_y="234dp"
    android:textAppearance="?android:attr/textAppearanceMedium" />

my Login.java file is:

package com.truebranches;

import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapPrimitive;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class Login extends Activity {
private final String NAMESPACE = "http://ws.userlogin.com";
private final String URL = "http://192.168.1.168:8085/Login/services/Login?wsdl";
private final String SOAP_ACTION = "http://ws.userlogin.com/authentication";
private final String METHOD_NAME = "authentication";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.login);
    Button register = (Button) findViewById(R.id.btn_reg);
    register.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // Switching to Register screen
            Intent i = new Intent(getApplicationContext(), Register.class);
            startActivity(i);
        }
    });
    Button logout = (Button) findViewById(R.id.btn_logout);
    logout.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // Switching to Register screen
            Intent i = new Intent(getApplicationContext(), Login.class);
            startActivity(i);
        }
    });
    TextView forgetpassword = (TextView) findViewById(R.id.TextView03);
    forgetpassword.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            // Switching to Register screen
            Intent i = new Intent(getApplicationContext(), ForgetPassword.class);
            startActivity(i);
        }
    });
    Button login = (Button) findViewById(R.id.btn_login);
    login.setOnClickListener(new View.OnClickListener() {

  public void onClick(View arg0) {
  loginAction();

  }
 });
 }

  private void loginAction(){
  SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

    EditText userName = (EditText) findViewById(R.id.tf_userName);
    String user_Name = userName.getText().toString();
    EditText userPassword = (EditText) findViewById(R.id.tf_password);
    String user_Password = userPassword.getText().toString();

  //Pass value for userName variable of the web service
    PropertyInfo unameProp =new PropertyInfo();
    unameProp.setName("userName");//Define the variable name in the web service method
    unameProp.setValue(user_Name);//set value for userName variable
    unameProp.setType(String.class);//Define the type of the variable
    request.addProperty(unameProp);//Pass properties to the variable

  //Pass value for Password variable of the web service
    PropertyInfo passwordProp =new PropertyInfo();
    passwordProp.setName("password");
    passwordProp.setValue(user_Password);
    passwordProp.setType(String.class);
    request.addProperty(passwordProp);

    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
    envelope.setOutputSoapObject(request);
    HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

    try{
        androidHttpTransport.call(SOAP_ACTION, envelope);
           SoapPrimitive response = (SoapPrimitive)envelope.getResponse();
           String status = response.toString();
           TextView result = (TextView) findViewById(R.id.tv_status);
           result.setText(response.toString());

           if(status.equals("Success!"))
            {
               Intent intent = new Intent(Login.this,HomePage.class);
               intent.putExtra("username",userName.getText().toString());
               startActivity(intent);


            }
           else
            {
               Intent i = new Intent(getApplicationContext(), Login.class);
               startActivity(i);
            }
           }



    catch(Exception e){

    }
   }

   }

But how do I create the Java code? I can’t seem to be able to do this. Please guide me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T19:15:37+00:00Added an answer on June 7, 2026 at 7:15 pm

    EDIT————–

    import....
    import android.widget.CheckBox;         // <--- Add
    import android.content.SharedPreferences;   // <--- Add
    import android.widget.EditText; // <--- Add
    .
    .
    .
    .
    private static final String SPF_NAME = "vidslogin"; //  <--- Add this
    private static final String USERNAME = "username";  //  <--- To save username
    private static final String PASSWORD = "password";  //  <--- To save password
    CheckBox chkRememberMe; //      <--- You even not taken CheckBox, SILLY WORKER
    EditText etUserName, etPassword;    //      <--- You even not taken CheckBox,     SILLY WORKER
    
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.login);
    
        chkRememberMe = (CheckBox) findViewById(R.id.rempasswordcheckbox);  //      <---  Instantiate CheckBox...
        etUserName = (EditText) findViewById(R.id.tf_userName); //  <---  Instantiate     EditText...
        etPassword = (EditText) findViewById(R.id.tf_password); //  <---  Instantiate EditText...
    
    
        //  ADD THIS  TO  READ  SAVED  username & password  NEXT-TIME OPENING Application
        SharedPreferences loginPreferences = getSharedPreferences(SPF_NAME,
                Context.MODE_PRIVATE);
        etUserName.setText(loginPreferences.getString(USERNAME, ""));
        etPassword.setText(loginPreferences.getString(PASSWORD, ""));
    .
    .
    .
    .
    .
    .
    private void loginAction() {
    .
    .
    .
    .
    if (status.equals("Success!"))
    {
        //   ADD  to save  and  read next time
            String strUserName = etUserName.getText().toString().trim();
            String strPassword = etPassword.getText().toString().trim();
            if (null == strUserName || strUserName.length() == 0)
                        {
                //  showToast("Enter Your Name");
                etUserName.requestFocus();
            } else if (null == strPassword || strPassword.length() == 0)
                        {
                    //      showToast("Enter Your Password");
                etPassword.requestFocus();
            } else
                        {
                if (chkRememberMe.isChecked())
                                {
                    SharedPreferences loginPreferences = getSharedPreferences(SPF_NAME, Context.MODE_PRIVATE);
                    loginPreferences.edit().putString(USERNAME, strUserName).putString(PASSWORD, strPassword).commit();
                } else
                                {
                    SharedPreferences loginPreferences = getSharedPreferences(SPF_NAME, Context.MODE_PRIVATE);
                    loginPreferences.edit().clear().commit();
                                }
    //      OVER
    
        Intent intent = new Intent(Login.this, HomePage.class);
        intent.putExtra("username", userName.getText().toString());
        startActivity(intent);
    }
    

    If YourCheckBox found isChecked()==true

    at the time of Login button onClick

    Just save the username and password to SharedPreference.

    Declare PREFRENCES_NAME = "Name You Like"
    Save Data:-
    
    SharedPreferences settings = getSharedPreferences(PREFRENCES_NAME, 0);
    settings.edit().putString("name", strName).putString("pwd", strPass).commit();
    
    
    Retrieve Data:-
    
    SharedPreferences settings = getSharedPreferences(PREFRENCES_NAME, 0);
    String name = settings.getString("name", "");
    String password = settings.getString("pwd", "");
    
    
    Clear Data:-
    
    SharedPreferences settings = getSharedPreferences(
    PREFRENCES_NAME, Context.MODE_PRIVATE);
    settings.edit().clear().commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi i have developed a login form (username,password and submit button) using a MySQL
hi i successfully develped one login form with mysql database via soap webservices.here i
I have a database system developed in mysql and php, with a login system
I currently have a form based login in my application which is developed on
I have a FB chat client developed for Android. I've been using facebook android-sdk
I have developed a simple login form to be used in my JSF +
I have developed a window application in VS2005 using C#. I need to integrate
I have developed a few Delphi Win32 (currently using D2007) applications, which revolve around
I have developed an SSIS custom task component. It uses a connection manager of
I'm new to using CURL, but I have successfully got it to submit ordinary

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.