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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:18:40+00:00 2026-05-23T13:18:40+00:00

I have a database which contains list of image and video path. My problem

  • 0

I have a database which contains list of image and video path. My problem is I have to show all the images and video in a GridView. I have taken list of path from database but I am not able to show them in GridView. Please help me. Here is my code.
Thanks in Advance

 public class GridGallery extends Activity
{

    ArrayList<String>list;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.grid_gallery);
        DataModel dbModel = new DataModel(this);
        list = dbModel.selectAll();

        GridView sdcardImages = (GridView) findViewById(R.id.sdcard);
        sdcardImages.setAdapter(new ImageAdapter(this));

    }


     /**
     * Adapter for our image files.
     */
    private class ImageAdapter extends BaseAdapter {

        private final Context context; 

        public ImageAdapter(Context localContext) {
            context = localContext;
        }

        public int getCount() 
        {
            return list.size();
        }
        public Object getItem(int position) 
        {
            return position;
        }
        public long getItemId(int position) 
        {
            return position;
        }

        public View getView(int position, View convertView, ViewGroup parent) 
        {
            ImageView picturesView;
            if (convertView == null) {
                picturesView = new ImageView(context);

                for(int i=0;i<list.size();i++)
                {
                    Bitmap mBitmap = BitmapFactory.decodeFile(list.get(i));
                    picturesView.setImageBitmap(mBitmap);
                }
                picturesView.setScaleType(ImageView.ScaleType.FIT_CENTER);
                picturesView.setPadding(8, 8, 8, 8);
                picturesView.setLayoutParams(new GridView.LayoutParams(100, 100));
            }
            else 
            {
                picturesView = (ImageView)convertView;
            }
            return picturesView;
        }
    }

}
  • 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-23T13:18:40+00:00Added an answer on May 23, 2026 at 1:18 pm

    Yes..

    I got the answer after a long experiment: here it is:

    public class GridGallery extends Activity
    {
        ArrayList<String>list;    
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.grid_gallery);
            DataModel dbModel = new DataModel(this);
            list = dbModel.selectAll();
    
            GridView sdcardImages = (GridView) findViewById(R.id.sdcard);
            sdcardImages.setAdapter(new ImageAdapter(this));    
        }    
    
         /**
         * Adapter for our image files.
         */
        private class ImageAdapter extends BaseAdapter {
    
            private final Context context;     
            public ImageAdapter(Context localContext) {
                context = localContext;
            }
    
            public int getCount() 
            {
                return list.size();
            }
            public Object getItem(int position) 
            {
                return position;
            }
            public long getItemId(int position) 
            {
                return position;
            }
    
            public View getView(int position, View convertView, ViewGroup parent) 
            {
                ImageView picturesView;
                if (convertView == null) {
                    picturesView = new ImageView(context);    
                     if(list.get(position).contains(".jpg"))
                    {
                         bitmap = BitmapFactory.decodeFile(list.get(position)); //Creation of Thumbnail of image
                    }
                    else if(list.get(position).contains(".mp4"))
                    {
                        bitmap = ThumbnailUtils.createVideoThumbnail(list.get(position), 0); //Creation of Thumbnail of video
                    }
                    picturesView.setScaleType(ImageView.ScaleType.FIT_CENTER);
                    picturesView.setPadding(8, 8, 8, 8);
                    picturesView.setLayoutParams(new GridView.LayoutParams(100, 100));
                }
                else 
                {
                    picturesView = (ImageView)convertView;
                }
                return picturesView;
            }
        }
    
    }
    

    This works fine for me

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

Sidebar

Related Questions

Learning php! I have a sql database which contains a table called 'images' which
I have an undordered list Aditya Sam which contains the names of people from
I have a checkboxlist wich contains a list of services loaded from a database
I have a drop-down list which gathers data from the database and a textbox
I have a database which contains picture data stored as a binary blob. The
At the moment, I have a database which contains username, password, etc. I am
I have one database table which contains 8 columns. One of the columns is
I have a database Student which contains about 20 tables. one of the tables
we have a table in an Oracle Database which contains a column with the
I have my own custom Content Provider that loads a database which contains the

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.