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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T02:56:52+00:00 2026-06-17T02:56:52+00:00

I am using eclipse Indigo for Android Development. This might sound a little crazy

  • 0

I am using eclipse Indigo for Android Development.
This might sound a little crazy , but
Is there any feature in eclipse that will automatically take screenshots of every screen while the app is running?
Or does this need to be done programatically?
Actually what I want is, I need screen shots of all the screens in my app.
And I want to avoid taking them manually using DDMS perspective.

Any info would be helpful.
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-06-17T02:56:53+00:00Added an answer on June 17, 2026 at 2:56 am

    Is there any feature in eclipse that will automatically take
    screenshots of every screen while the app is running?

    Yes, You can take a screenshot if you

    open the Android view “devices” (under Window –> Show View –>
    Other… –> Android –> Devices). Click on the device or emulator
    you want to take a screen shot of, then click the “Screen Capture”
    button (it looks like a little picture, and it should be next to a
    stop sign button). Occasionally the device won’t immediately load the
    picture; sometimes you have to close/reopen the screen capture window.

    This is equivalent to taking a picture via DDMS, but you can do it in Eclipse instead of opening another application.

    does this need to be done programatically?

    Yes, you can also do it like it as Below Code Suggests.

    // image naming and path  to include sd card  appending name you choose for file
    String mPath = Environment.getExternalStorageDirectory().toString() + "/" + ACCUWX.IMAGE_APPEND;   
    
    // create bitmap screen capture
    Bitmap bitmap;
    View v1 = mCurrentUrlMask.getRootView();
    v1.setDrawingCacheEnabled(true);
    bitmap = Bitmap.createBitmap(v1.getDrawingCache());
    v1.setDrawingCacheEnabled(false);
    
    OutputStream fout = null;
    imageFile = new File(mPath);
    
    try {
        fout = new FileOutputStream(imageFile);
        bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fout);
        fout.flush();
        fout.close();
    
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    

    Then, when you need to access use something like this:

    Uri uri = Uri.fromFile(new File(mPath));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using Eclipse Indigo for Android development. The problem i face is that
We will be using eclipse(Helios or Indigo) for multiuser environment for development. For this
I have been using eclipse indigo happily for android development for a while. In
I am using eclipse indigo with android ADT 20 but everytime it shows error
I am using Eclipse Indigo with an Android/NDK mixed project. I've added C++ nature
I'm using Eclipse Indigo and I'm using it for the purpose of developing Android
I am trying to run MapReduce jobs using hadoop-eclipse plugin with Eclipse Indigo, but
I'm using the latest Eclipse Juno to develop Android applications. My problem is that
I am using Eclipse Indigo. Not sure what is going on, but what I
I have updated Android 4.2 SDK using SDK Manager and ADT 21.0.0.v201210310015-519525 in Eclipse(Indigo).

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.