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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:32:08+00:00 2026-05-22T02:32:08+00:00

I have some image path stored in database and I have to show the

  • 0

I have some image path stored in database and I have to show the image in grid layout.
here is my code

public class HeadshotAllPhoto extends Activity 
{
    GridView imagegrid;
    String path,filemanagerstring;
    String[] ImageNameArr;
    String filePath = null;
    String ImageName ;
    Bitmap bitmap;
    DataHelperHeadshot dbHeadshot;

String sub_list ;
String[] pathArr;
Bitmap[] bmp;
ArrayList<String> items = new ArrayList<String>();
@Override
protected void onCreate(Bundle savedInstanceState) 
{   
    super.onCreate(savedInstanceState);
    setContentView(R.layout.headshotallphoto);
    dbHeadshot = new DataHelperHeadshot(this);

    bg = (ImageView)findViewById(R.id.selectHeadshotView);

    List<String> names = this.dbHeadshot.fetchAllHeadshot();
    StringBuilder sb = new StringBuilder();
    for (String name : names)
    { 
       name.trim();
       sb.append(",");
       sb.append(name);
    }   

    bmp = new Bitmap[icount+1];         
    sub_list = sb.toString();    
    Log.i("sub_list .. ",""+sub_list);
    pathArr = sub_list.split(",");      

    for(int p=0;p<pathArr.length;p++)           
    {       
        if(pathArr[p]!=null)
        {               
            bitmap = decodeFile(pathArr[p]);    
            if(bitmap!=null)
            {
                items.add(pathArr[p]);                  
                bmp[p] = bitmap;
            }
        }
        if(pathArr[p] == null)
            break;
    }   

    imagegrid = (GridView) findViewById(R.id.PhoneImageGrid);
    imagegrid.setAdapter(new ImageAdapter(getApplicationContext(),bmp));
    imagegrid.setOnItemClickListener(this);     
    }
}

public class ImageAdapter extends BaseAdapter
{
    private Context mContext;       
    Bitmap[] mImageArray;   

    public ImageAdapter(Context c, Bitmap[] imgArray) 
    {
          mContext = c;
          mImageArray = imgArray;             
    }
    public int getCount() 
    {
          return mImageArray.length;
    }
    public Object getItem(int position)
    {
          return position;
    }
    public long getItemId(int position)
    {
          return position;
    }

    public View getView(int position,View convertView,ViewGroup parent)
    {
        System.gc();
        ImageView i = null ;

        if (convertView == null ) 
        {               
            i = new ImageView(mContext);
            i.setLayoutParams(new GridView.LayoutParams(92,92));
            i.setScaleType(ImageView.ScaleType.CENTER_CROP);               
            i.setImageBitmap(mImageArray[position]);                          
        }
         else 
             i = (ImageView) convertView;           
         return i;
    }               
}

public Bitmap decodeFile(String filePath) 
{
    System.out.println("filepath in decode file .. "+filePath);
    BitmapFactory.Options o = new BitmapFactory.Options();
    o.inJustDecodeBounds = true;
    BitmapFactory.decodeFile(filePath, o);

    // The new size we want to scale to
    final int REQUIRED_SIZE = 100;
    final int H = 50;

    // Find the correct scale value. It should be the power of 2.
    int width_tmp = o.outWidth, height_tmp = o.outHeight;
    int scale = 1;
    while (true) {
        if (width_tmp < REQUIRED_SIZE && height_tmp < H)
            break;
        width_tmp /= 2;
        height_tmp /= 2;
        scale *= 2;
    }
    // Decode with inSampleSize
    BitmapFactory.Options o2 = new BitmapFactory.Options();
    o2.inSampleSize = scale;
    System.out.println("decode file ........... "+filePath);
    bitmap = BitmapFactory.decodeFile(filePath, o2);    
    return bitmap;
}   
}

Pls help me
Thanks

  • 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-22T02:32:09+00:00Added an answer on May 22, 2026 at 2:32 am

    I am unable to understand if you already have list why you created a sing appending “,” then again splitting it, what causes problem is that at the end of your string there is a “,” resulting in adding of null data, BTW try below code might help, change your onCreate with below one

    protected void onCreate(Bundle savedInstanceState) 
    {   
        super.onCreate(savedInstanceState);
        setContentView(R.layout.headshotallphoto);
        dbHeadshot = new DataHelperHeadshot(this);
    
        bg = (ImageView)findViewById(R.id.selectHeadshotView);
    
        List<String> names = this.dbHeadshot.fetchAllHeadshot();
        StringBuilder sb = new StringBuilder();
        for (String name : names)
        { 
           name.trim();
           sb.append(",");
           sb.append(name);
        }   
    
        bmp = new Bitmap[10+1];           
    
        for(int p=0;p<names.size();p++)           
        {       
            if(names.get(p) !=null)
            {               
                bitmap = decodeFile(names.get(p));    
                if(bitmap!=null)
                {
                    items.add(names.get(p));                  
                    bmp[p] = bitmap;
                }
            }
            if(pathArr[p] == null)
                break;
        }   
    
        imagegrid = (GridView) findViewById(R.id.PhoneImageGrid);
        imagegrid.setAdapter(new ImageAdapter(getApplicationContext(),bmp));
        imagegrid.setOnItemClickListener(this);     
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code that generates image of a pie chart. It's a general
I have some code that downloads an image from a remote server $data =
I have some code that loads an image file off the web and puts
I have some code that does MemoryStream ms = new MemoryStream(); ... return Image.FromStream(ms);
I have some scientific image data that's coming out of a detector device in
So I have some cool Image Processing algorithm. I have written it in OCaml.
I have a CALayer with some image contents. When a button touched, I want
I have some problems with OpenCV s cvCanny(...) and the Image data types it
I have some databases that have four files each; one for PRIMARY, IDX, IMAGE,
There is a data file and some image files that I have to download

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.