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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:34:37+00:00 2026-06-17T08:34:37+00:00

Every time I finish an application that contains a GridView with an ArrayAdapter in

  • 0

Every time I finish an application that contains a GridView with an ArrayAdapter in which I return an ImageView from getView() I get an error that says:

01-15 17:28:55.715: E/StrictMode(6480): A resource was acquired at attached stack trace but never released. See java.io.Closeable for information on avoiding resource leaks. E/StrictMode(6480):
java.lang.Throwable: Explicit termination method ‘close’ not called

The problem appears to point to several lines with:

imageView.setImageURI(uri)

Any ideas?

  • 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-17T08:34:38+00:00Added an answer on June 17, 2026 at 8:34 am

    In certain situations setImageURI() opens an InputStream but doesn’t close it. Here is a workaround:

    InputStream is = null;
    try { 
      if(uri != null) {
        is = getContentResolver().openInputStream(uri);
        Drawable d = Drawable.createFromStream(is, null);
        imageView.setImageDrawable(d);
      }
    } catch(Exception e) {
      Log.e(TAG, "Unable to set ImageView from URI: " + e.toString());
    } finally {
      org.apache.commons.io.IOUtils.closeQuietly(is);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my application I modify a SharedPreferences instance every time I finish / start
Every time when I'm trying to load the .dll in my application, I'm getting
Every time I try to access my localhost/phpmyadmin it gives me this error --->
So I have this one time deal where I have to get data from
Every time when my apps went to the layout that download image online, the
I've an existing WPF application, which has several sections. Every section is a UserControl,
Every time i reset & seed my database it wipes out the standard admin@example.com
every time I open my Solution in Visual Studio it tries to communicate and
Every time I bind an AMQP queue to an exchange it automatically seems to
Every time i make a new JFrame object, the frame appears in the 0,0

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.