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

  • Home
  • SEARCH
  • 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 6742691
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:52:25+00:00 2026-05-26T11:52:25+00:00

Basically I have a screen that will either add or update a user contact

  • 0

Basically I have a screen that will either add or update a user contact information. The problem is I HAVE to use the same screen to do both things.

When a user selects “new” I simply pass the intent like this:

newButton.setOnClickListener(new Button.OnClickListener() {
            public void onClick(View arg0) {
                Intent intent = new Intent(ContactProjectActivity.this, AddContact.class);
                startActivity(intent);  
            }
        });

From a seperate activity, when the user selects “edit” I pass the intent like this:

edit.setOnClickListener(new Button.OnClickListener() {
        public void onClick(View arg0) {
            Intent intent = new Intent(ContactView.this, AddContact.class);
            intent.putExtra("name",personName.getText().toString());
            startActivity(intent);
        }

});

On the New/Edit page I have this code:

final Bundle extras = getIntent().getExtras();
        String searchTerm = extras.getString("name");

        if (extras.size() > 0) {
            int index = searchTerm.indexOf(' ');
            final String fName = searchTerm.substring(0, index);
            final String lName = searchTerm.substring(index + 1, searchTerm.length());

With this code, I’m checking to see which activity is coming to my page. If I had information passed to me, I know I am supposed to edit the data.

The problem is, when I click the newButton in the ContactProjectActivity class my program crashes.

  • 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-26T11:52:25+00:00Added an answer on May 26, 2026 at 11:52 am

    In you AddContact.class,you should have used:

    String searchTerm="";
    if(getIntent().hasExtra("name"))
         searchTerm= getIntent().getStringExtra("name");
    

    instead of using

    final Bundle extras = getIntent().getExtras();
    String searchTerm = extras.getString("name");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically what i have is a vb.net form that when a user clicks the
I basically have a page which shows a processing screen which has been flushed
I basically have 7 select statements that I need to have the results output
I basically have to do a update of a record. I have a set
Basically I have a script in Python that grabs the text from an open
I am trying to make an app that will have multiple screens, and I
I basically need a url to open that will end up at the updates
I am working on an app that will use a custom keyboard for text
I have just installed leksah following the user manual . The manual says that
I am making a grid-based game that will be much larger than the screen,

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.