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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:36:02+00:00 2026-05-24T21:36:02+00:00

I have 2 Activities, Activity_A and Activity_B Activity_A has a checkBox and a Button

  • 0

I have 2 Activities, Activity_A and Activity_B
Activity_A has a checkBox and a Button

what i am trying to do is when i click a Activity_A_button Activity_B would start
Depending on Activity_A checkBox state a TextView is visible or Gone.

here is a sample code

        public class Main extends Activity {
    public static CheckBox check1;
        private Button Button1;

CheckBox check1 = (CheckBox)findViewById(R.id.checkBox1);
Button1 = (Button) findViewById(R.id.button1);


button1.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {

final Intent i = new Intent(this, Activity_A.class);

    startActivity(i);

            }
        });

Activity_B

 Textview1 = (TextView)findViewById(R.id.textView1);

  if (Main.check1.isChecked())

        {
                  //code here

}

the problem is that i am getting a NullPointerExeption when i click Activity_A button @ the if statement

any ideas? thanks in advance

  • 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-24T21:36:03+00:00Added an answer on May 24, 2026 at 9:36 pm

    Do something like this.

    send the value of the checkbox when calling the activity.then retrieve it from your second activity and work accordingly

    final Intent i = new Intent(this, Activity_A.class);
        i.putExtras("value",""+check1.isChecked());//sending checked value to next activity
        startActivity(i);
    
    
    
    
    
    Textview1 = (TextView)findViewById(R.id.textView1);
    Bundle bundle = getIntent().getExtras();
     boolean ok=Boolean.parseBoolean(bundle.getString("value"));
    
      if (ok) //checkbox is checked in previous activity   
            {
                   //code here
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 activities. 1st activity has a 'go right' image button. (to move
In my application I have several activities, the main screen has 4 buttons that
I have two Sharepoint lists: - Assignments - Activities The activities list has a
I have an application which has two Activities, let's call them A and B.
SETUP : I have this app which has 4 activities in a linear path,
I have two activities or screens. The second activity has an AlertDialogBox with radiobuttons
My app has three tabs, A, B, C that have three distinct activities. Tab
I have a problem with my app. It has a lot of activities. Two
I have an application that depends on connection It has many Activities.I need to
I have an Android application that contains two Activities . Activity A has 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.