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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:26:23+00:00 2026-06-09T10:26:23+00:00

I want to change the content on a button change, but it never works.

  • 0

I want to change the content on a button change, but it never works.

        button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                setContentView(R.layout.blahdyblah);
            }
        });

So that’s the code, but whenever I want to change setContentView(), it doesn’t change, it just clicks and does nothing. If anyone could help me in this task…

I’ve also tried putting the setContentView in another function… That still doesn’t work.

  • 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-09T10:26:24+00:00Added an answer on June 9, 2026 at 10:26 am

    I’m guessing you want your screen to switch to another layout when the button is clicked. Try the following. First of all, make an activity called “blahdyblah” instead of just an xml file(So you should have two activities, your main activity which has the button with the onClickListener, and a separate activity called “blahdyblah”). After you’ve done that, try this:

    button.setOnClickListener(new View.OnClickListener() 
    {
            @Override
            public void onClick(View v) 
            {
                Intent intent = new Intent(MainActivity.this, blahdyblah.class);
                startActivity(intent);
            }
    });
    

    In the code, replace “MainActivity” with the name of the class in which you are writing this onClickListener.

    Set the blahdyblah.java file’s content view to R.layout.blahdyblah
    I’m pretty sure that should do what you’re looking for.

    blahdyblah.java

    public class blahdyblah extends Activity
    {
        public void onCreate(Bundle savedInstanceState) 
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.blahdyblah);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to change content of a Button in XAML using a DataTrigger. Conditionally
I want to change the button content depending on the previous content click. For
i want change the content of a UITableView when i change a button, how
I want to dynamically change content , by following code. localStorage.removeItem(some key); but current
I want to change the of a TextView by pressing a Button , but
i know that ActivityGroup is able to change the content of a view, but
I want to change the content of a div when I click a button.
I want to change the button shape with round edges but somehow it does
i want to change a div content when my page embed into another page
I want to change my div content on the click of a link, this

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.