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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:33:09+00:00 2026-05-26T07:33:09+00:00

i have a big doubt about memory leak and screen rotation. I know that

  • 0

i have a big doubt about memory leak and screen rotation. I know that activity is destroy when that happens and new one is started. With my code, with is the best way to show the gridview? (this activity is part of a tab activity so in the main one i get the pictures from web services and put them on the object, using AsyncTask)

i would like to show the pictures at the same time they are saved on the object. Like simulating ajax…is that possible? at the moment, they are all show on the start or resume.

Also, im facing memory leak here?

last question, how can i show photos in the grid

my code:

public class LoteFotosActivity extends Activity {

Sistema sis=Sistema.getInstance();

Lote lote;
GridView gridview;
ImageAdapter iA;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.lote_foto_view);
    Bundle extras = getIntent().getExtras();
    lote=sis.getLoteDetalle(extras.getInt("LoteID"));

    gridview = (GridView) findViewById(R.id.gridview);
    gridview.setAdapter(iA=new ImageAdapter(this));

    gridview.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
            Toast.makeText(LoteFotosActivity.this, "" + position, Toast.LENGTH_SHORT).show();
        }
    });

}

public class ImageAdapter extends BaseAdapter {
    private Context mContext;

    public ImageAdapter(Context c) {
        mContext = c;
    }

    public int getCount() {
        return lote.FOTOS.size();
    }

    public Object getItem(int position) {
        return null;
    }

    public long getItemId(int position) {
        return 0;
    }

    // create a new ImageView for each item referenced by the Adapter
    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView imageView;
        if (convertView == null) {  // if it's not recycled, initialize some attributes
            imageView = new ImageView(mContext);
            imageView.setLayoutParams(new GridView.LayoutParams(200,200));
            imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
            imageView.setPadding(8, 8, 8, 8);
        } else {
            imageView = (ImageView) convertView;
        }

        imageView.setImageBitmap(lote.FOTOS.get(position));
        return imageView;
    }

}
//test looking
public void onResume() { 
    super.onResume();
    Toast.makeText(this,"ON RESUME",
            Toast.LENGTH_SHORT).show(); 
//  gridview.setAdapter(new ImageAdapter(this));
//  foto.setImageDrawable(lote.FOTOS.get(0));
}
public void onPause() { 
    super.onPause();
    Toast.makeText(this,"onPause",
            Toast.LENGTH_SHORT).show(); 
    iA=null;
    gridview.setAdapter(iA=new ImageAdapter(this));
//  foto.setImageDrawable(lote.FOTOS.get(0));
}

thx 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-26T07:33:10+00:00Added an answer on May 26, 2026 at 7:33 am

    I think you should add this to your activity

    android:configChanges="orientation" 
    

    to avoid the destroying problem when rotating the screen… with this you dont need to save state to restore, there is no need because the activity is not destroyed and recreated everytime the screen rotation changes

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

Sidebar

Related Questions

I'm getting my hands on JSF 2.0 and have certain doubt about new annotation
I have a big doubt. Let's take as example a database for a whatever
I have big system that make my system crash hard. When I boot up,
I have big element at the top of the webpage that sides down with
How would you maintain the legacy applications that: Has no unit tests have big
Hi I have big xml file which has a structure similar to the one
I have menu with images. I have big images 72x72. In activity layout I'm
I am a tinkerer—no doubt about that. For this reason (and very little beyond
I have an issue that on one computer applications developed using the Windows Presentation
I have a big json object containing cell data from a sample spreadsheet that

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.