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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T04:56:04+00:00 2026-05-24T04:56:04+00:00

I want to load array of Images one by one from drawable. At a

  • 0

I want to load array of Images one by one from drawable. At a given time the ImageView should display one image when user slides, it should load the next Image.

Can I acheive this?? I don’t like gallery view, I directly need to load the single image dat fills the screen and slides through till the end of Array.

Thanks in advance for your time.

  • 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-24T04:56:05+00:00Added an answer on May 24, 2026 at 4:56 am

    After thinking for hours I came up with solution as none of the answers helped me.

    1. Load the Imageview
    2. onclick will change the imageview image with an Animation .

    Java Code

    public class ImagePreviewActivity extends Activity implements OnClickListener {
    
            public int currentimageindex=0;
            private int[] IMAGE_IDS ={R.drawable.splash1, R.drawable.splash2, R.drawable.image_preview, R.drawable.report_incident_exclamation_mark};
    
    
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
    
                setContentView(R.layout.media_preview);
                ImageView imageview = (ImageView)findViewById(R.id.ImageViewPreview);
                imageview.setImageResource(R.drawable.splash1); 
                currentimageindex++;
                imageview.setOnClickListener(this);
    
    
            }
    
    
            @Override
            public void onClick(View v) {
                Animation inFromRight = new TranslateAnimation(
                        Animation.RELATIVE_TO_PARENT, +1.0f,
                        Animation.RELATIVE_TO_PARENT, 0.0f,
                        Animation.RELATIVE_TO_PARENT, 0.0f,
                        Animation.RELATIVE_TO_PARENT, 0.0f);
                    inFromRight.setDuration(500);
                        ImageView imageview = (ImageView)findViewById(R.id.ImageViewPreview);
                        imageview.startAnimation(inFromRight);
    
                    if ((IMAGE_IDS.length)> currentimageindex){
    
                        imageview.setImageResource(IMAGE_IDS[currentimageindex]);
    
                        currentimageindex++;
    
                    }
    
    
            }
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to load an image from an array and set the view to
I want to load 52 images (deck of cards) in gif format from my
I want to load some images into my application from the file system. There's
I need to load an array of images in Javascript, but I want to
I have array of image url. I want to show the images into UIImageView.
I want a web page to display several random images on load. I've thought
I want to get a list of product images from SQL to display in
I'm currently working on a jQuery solution where I want to load images from
I want to load (and decode) PNG images and convert them into a one-dimensional
i want to load an array of page-specific external .js files. in the past,

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.