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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:14:32+00:00 2026-06-01T12:14:32+00:00

I have 4 buttons that when click starts a new activity class. This works

  • 0

I have 4 buttons that when click starts a new activity class. This works fine using switch case. But I want a drawable to show in an Image View based on which button was clicked. I’m not sure how to do this. Could someone give me and idea of how to research this for some sample code.

case R.id.button1:
    intent = new Intent(Gallery.this, Photos.class);
    intent.putExtra("iv", R.drawable.photo1);
    break;
case R.id.button2:
    intent = new Intent(Gallery.this, Photos.class);
    intent.putExtra("iv", R.drawable.photo2);
    break;

This works as far as switching to the Photos activity but the drawable doesn’t show in the Imagae View. I have this code in the Photos Activity.

 iv = (ImageView)findViewById(R.id.photo);
        Bundle extras = getIntent().getExtras();
        extras.getInt("iv");

I do not get any errors I just don’t have the photo showing up.

Thank you for any help you can give.

  • 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-01T12:14:33+00:00Added an answer on June 1, 2026 at 12:14 pm

    Looks like the only thing you’re missing is the call to actually set the image – everything else looks fine. Make the last lines more like:

    int imgId = extras.getInt("iv", 0);
    if (imgId > 0) {
      iv.setImageResource(imgId);
    }
    

    You were most of the way there. Android has a great set of tutorials for coming up to scratch with all of the basic view components.

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

Sidebar

Related Questions

I have an activity class that contains a button. When I click the button
I have a Activity ItemList.java . When user click on item, it starts new
okay? I have a button that is inside an updatepanel, click on this button
I have an app that when I click a button loads a new TabItem
I have a ListView that uses a customized adapter, but I can't click on
I have two buttons on my application. One button starts a new Game (lets
I'm using WatiN to parse my web site. I have a button that starts
So I have a ListView on which I click to start new Activity called
I have a button that plays an audio file on its click listener. If
I have a button click event that takes information from controls and enters it

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.