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 6039661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T06:24:07+00:00 2026-05-23T06:24:07+00:00

I added a switch case above the register() method and I am getting Fatal

  • 0

I added a switch case above the register() method and I am getting Fatal exception and If i remove the switch case its working fine. If I go for onclicklistner inside the register method its also working for me but I want to implement the switch case, how can I do this?

Thanks in advance…!

this is my code.

Thread t;
ProgressDialog dialog;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Button signin = (Button) findViewById(R.id.regsubmitbtn);

    signin.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            showDialog(0);
            t = new Thread() {
                public void run() {
                    register();
                }
            };
            t.start();
        }
    });
}

@Override
protected Dialog onCreateDialog(int id) {
    switch (id) {
    case 0: {
        dialog = new ProgressDialog(this);
        dialog.setMessage("Please wait while connecting...");
        dialog.setIndeterminate(true);
        dialog.setCancelable(true);
        return dialog;
    }
    }
    return null;
}


        Button signin = (Button) findViewById(R.id.regsubmitbtn);

    signin.setOnClickListener(new OnClickListener() {
        public void onClick(View v) {
            showDialog(0);
            t = new Thread() {
                public void run() {
                    register();
                }
            };
            t.start();
        }
    });
}


        String gender; 
    Button regmalebtn = (Button) findViewById(R.id.regmalebtn);
      Button regfemalebtn = (Button) findViewById(R.id.regfemalebtn);
         // Here in the above line I m getting the error//
      public void onClick(View v) {

          switch(v.getId()){

          case R.id.regmalebtn:

          gender = regmalebtn.getText().toString();
            gender.equals("M");
        //  request.addProperty("gender",gender );

               break;

          case R.id.regfemalebtn: 

             gender = regfemalebtn.getText().toString();
                gender.equals("F");
            //  request.addProperty("gender", gender);
               break;
          default:
              break;

          }
          } 


public void register() {
    Log.v(TAG, "Trying to Login");


      EditText etxt_user = (EditText) findViewById(R.id.regetfirstname);
      EditText etxt_pass = (EditText) findViewById(R.id.regetlastname);
      EditText etxt_dob = (EditText) findViewById(R.id.regetdob); 
             // in the above line i m getting error//
      EditText etxt_email = (EditText) findViewById(R.id.regetemail); 
      EditText  etxt_password = (EditText) findViewById(R.id.regetpwd);
      EditText  etxt_confirmpassword = (EditText) findViewById(R.id.regetrepwd);
      EditText  etxt_mobno = (EditText) findViewById(R.id.regetmobno);
          Button regmalebtn = (Button) findViewById(R.id.regmalebtn);
                 // in the above line I m getting the error//
       Button regfemalebtn = (Button) findViewById(R.id.regfemalebtn);
    //  String deviceid = null;
      String fname = etxt_user.getText().toString();
      String lname = etxt_pass.getText().toString();
      String dob = etxt_dob.getText().toString(); 
      String contact = etxt_mobno.getText().toString();


      String password;
      String confirmpassword ;
      String email =  etxt_email.getText().toString(); 
      password =  etxt_password.getText().toString(); 
      confirmpassword =  etxt_confirmpassword.getText().toString();



     final SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
    SoapSerializationEnvelope soapEnvelope = new  SoapSerializationEnvelope(SoapEnvelope.VER12); 
                // in the above line I m getting errors//      
        soapEnvelope.dotNet = true;
       soapEnvelope.setOutputSoapObject(request);
              // in the above line i m getting error
       HttpTransportSE aht = new HttpTransportSE(URL);

these r my logcat messages

 06-21 18:59:34.435: ERROR/AndroidRuntime(1164): FATAL EXCEPTION: main
 06-21 18:59:34.435: ERROR/AndroidRuntime(1164): java.lang.RuntimeException:
 Unable to instantiate activity ComponentInfo{com.soap/com.soap.Register}:  
   java.lang.NullPointerException
              06-21 18:59:34.435: ERROR/AndroidRuntime(1164):     
     ERROR/AndroidRuntime(1164): at  android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
           ERROR/AndroidRuntime(1164): at android.app.ActivityThread.access$2300(ActivityThread.java:125)
           ERROR/AndroidRuntime(1164): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
            ERROR/AndroidRuntime(1164): at android.os.Handler.dispatchMessage(Handler.java:99) 
           ERROR/AndroidRuntime(1164): at android.os.Looper.loop(Looper.java:123) 
           ERROR/AndroidRuntime(1164): at android.app.ActivityThread.main(ActivityThread.java:4627)
           ERROR/AndroidRuntime(1164): at java.lang.reflect.Method.invokeNative(Native Method)
           ERROR/AndroidRuntime(1164): at java.lang.reflect.Method.invoke(Method.java:521)
  • 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-05-23T06:24:08+00:00Added an answer on May 23, 2026 at 6:24 am

    regmalebtn or regfemalebtn are likely null. Make sure setContentView in your activity is called before the findViewById() calls. Otherwise, they’ll return null.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I added a navigation control to switch between views in my app. But some
Added: Working with SQL Server 2000 and 2005, so has to work on both.
I have been working on an application and I added a options menu. Prior
switch($_GET[action]) { case add_item: { AddItem($_GET[ids], $_GET[qty]); ShowCart(); break; } default: { ShowCart(); }
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { switch (requestCode) { case
Added : I am conducting a study for a new system we're going to
ADDED: This question is now, I believe, subsumed by this one: Using GNU Screen
I added a custom install action to my installer to add one of my
I added some custom fields (public booleans) to the global class in global.asax.cs which
I added some simple WatiN tests to our app today to check that a

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.