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

  • Home
  • SEARCH
  • 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 6727161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:00:55+00:00 2026-05-26T10:00:55+00:00

I’m using an implementation of ViewFlow example for my application where I have to

  • 0

I’m using an implementation of ViewFlow example for my application where I have to swipe images from SdCard. With the code I’m using I can swipe images, but it’s showing only one and i’m trying to set the whole images from my SdCard specific folder in the ViewFlow, but that’s the problem that I have. I’m getting the path to the image by an ID which I get from sqlite database and depending on that I want to add these images to the view. So this is the code which I’m using for now :

My Cards.class :

    package com.stampii.stampii.cards;

import java.util.ArrayList;
import java.util.HashMap;

import com.stampii.stampii.R;
import com.stampii.stampii.comm.rpc.UserDatabaseHelper;

import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageButton;

public class Cards extends Activity {

    public Cursor cursor;
    int position;
    int indexxx;
    Bitmap b;
    int objectId;
    int cardsId;
    ArrayList<HashMap<Integer, String>> imgpaths;
    ArrayList<Integer> ids;
    String path;
    int mediaType=5001;

    private ViewFlow viewFlow;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.circle_layout); 
        UserDatabaseHelper userDbHelper = new UserDatabaseHelper(this, null, 1);
        userDbHelper.initialize(this);
        imgpaths = new ArrayList<HashMap<Integer, String>>();
        HashMap<Integer, String> hm = new HashMap<Integer, String>();
        ids = new ArrayList<Integer>();

        final int cardId = getIntent().getIntExtra("card_id",0);
        Log.i("Card Id ","Card Id : "+cardId);
        final int collId = getIntent().getIntExtra("collection_id",0);
        Log.i("Collection Id ","Collection Id : "+collId);

        position = getIntent().getIntExtra("position",0);
        Log.i("position","position : "+position);

        String cardSQL = "SELECT cm.cardId, cm.objectId "+
         "FROM cardmedias AS cm "+
         "INNER JOIN cards AS cd "+
         "ON (cm.cardId = cd.objectId) "+
         "WHERE cd.collectionId="+collId +" AND cm.mediaType="+mediaType;

        Cursor cards = userDbHelper.executeSQLQuery(cardSQL);
        if (cards.getCount() == 0) {
            Log.i("", "No Image file");
            cards.close();
        } else if (cards.getCount() > 0) {
            for (cards.move(0); cards.moveToNext(); cards.isAfterLast()) {
                cardsId = Integer.parseInt(cards.getString(cards
                        .getColumnIndex("objectId")));
                //Log.i("", "cards objectId : " + cardsId);

                String path = Environment.getExternalStorageDirectory()
                        + "/.Stampii/MediaCard/" + cardsId + ".png";
                //Log.i("", "path : " + path);
                ids.add(cardsId);
                hm.put(cardsId, path);
            }
        }


        String sql = "SELECT objectId FROM cardmedias WHERE cardId=" + cardId
                + " LIMIT 1";
        Cursor cursor = userDbHelper.executeSQLQuery(sql);
        if (cursor.getCount() == 0) {
            Log.i("", "No Image file");
            cursor.close();
        } else if (cursor.getCount() > 0) {
            cursor.moveToFirst();
                objectId = Integer.parseInt(cursor.getString(cursor
                        .getColumnIndex("objectId")));
                Log.i("", "objectId : " + objectId);
                path = hm.get(objectId);
                Log.i("","path : "+hm.get(objectId));
                Log.i("","hm size : "+hm.size());
        }



        Button info = (Button) findViewById(R.id.info_button);
        info.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent intent = new Intent(Cards.this, SingleCardInfo.class);
                intent.putExtra("card_id", cardId);
                intent.putExtra("collection_id", collId);
                startActivity(intent);
            }
        });

        Button back = (Button) findViewById(R.id.back_button);
        back.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                finish();
            }
        });

        final ArrayList<Bitmap> images = new ArrayList<Bitmap>();

        for(int i=0;i<=2;i++){
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inTempStorage = new byte[16*1024];
                Bitmap b = BitmapFactory.decodeFile(hm.get(objectId), options);
                Log.i("","path : "+hm.get(objectId));
                images.add(b);
        }


        viewFlow = (ViewFlow) findViewById(R.id.viewflow);
        viewFlow.setAdapter(new ImageAdapter(this, images),position);


        ImageButton prevBtn = (ImageButton) findViewById(R.id.previous_button);
        prevBtn.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                indexxx = viewFlow.getSelectedItemPosition()-1;
                if (indexxx>=0) {
                    viewFlow.setAdapter(new ImageAdapter(Cards.this, images),indexxx);
                    viewFlow.setSelectedItemPosition(indexxx);
                    Log.i("indexxx", "indexxx : " + indexxx);
                }
            }
        });

        ImageButton nextBtn = (ImageButton) findViewById(R.id.next_button);
        nextBtn.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                indexxx = viewFlow.getSelectedItemPosition()+1;
                if (indexxx<images.size()) {
                    viewFlow.setAdapter(new ImageAdapter(Cards.this, images),indexxx);
                    viewFlow.setSelectedItemPosition(indexxx);
                    Log.i("indexxx", "indexxx : " + indexxx);
                }
            }

        }); 

    }
    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        viewFlow.onConfigurationChanged(newConfig);
    }

}

And my ImageAdapter class :

package com.stampii.stampii.cards;

import java.util.ArrayList;

import com.stampii.stampii.R;

import android.content.Context;
import android.graphics.Bitmap;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;

public class ImageAdapter extends BaseAdapter {

    private LayoutInflater mInflater;
    private ArrayList<Bitmap> ids = new ArrayList<Bitmap>();
    //private Bitmap bitmap;

    public ImageAdapter(Context context, ArrayList<Bitmap> images) {
        mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        ids = images;
    }

    @Override
    public int getCount() {
        return ids.size();
    }

    @Override
    public Object getItem(int position) {
        return position;
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.image_item, null);
        }
        ((ImageView) convertView.findViewById(R.id.imgView)).setImageBitmap(ids.get(position));
        return convertView;
    }

}

So my question is how can I add all images from my SdCard folder to this ViewFlow example when I had the path to these images. I’ve tried to load all of them, but in some cases the images are too much and it’s throwing me an outofmemoryException, that’s why I think it’s better just to set the paths to them. So any help or suggestions are welcomed!

Thanks in advance!

Here is code of ViewFlow.class : ViewFlow

  • 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-26T10:00:56+00:00Added an answer on May 26, 2026 at 10:00 am

    You can try something like this :

    public class ImageAdapter extends BaseAdapter {
    
        private LayoutInflater mInflater;
        private ArrayList<String> ids = new ArrayList<String>();
        //private Bitmap bitmap;
    
        public ImageAdapter(Context context, ArrayList<String> images) {
            mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            ids = images;
        }
    
        @Override
        public int getCount() {
            return ids.size();
        }
    
        @Override
        public Object getItem(int position) {
            return position;
        }
    
        @Override
        public long getItemId(int position) {
            return position;
        }
    
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            if (convertView == null) {
                convertView = mInflater.inflate(R.layout.image_item, null);
            }
    
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inTempStorage = new byte[8*1024];
    
            Bitmap ops = BitmapFactory.decodeFile(ids.get(position), options);
    
            ((ImageView) convertView.findViewById(R.id.imgView)).setImageBitmap(ops);
            return convertView;
        }
    
    }
    

    And :

    public class Cards extends Activity {
    
    public Cursor cursor;
    int position;
    int indexxx;
    Bitmap b;
    int objectId;
    int cardsId;
    ArrayList<Integer> ids;
    String path;
    int mediaType=5001;
    ArrayList<String> images;
    int card;
    
    private ViewFlow viewFlow;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.circle_layout); 
        UserDatabaseHelper userDbHelper = new UserDatabaseHelper(this, null, 1);
        userDbHelper.initialize(this);
        //imgpaths = new ArrayList<HashMap<Integer, String>>();
        HashMap<Integer, String> hm = new HashMap<Integer, String>();
        ids = new ArrayList<Integer>();
        images = new ArrayList<String>();
    
        final int cardId = getIntent().getIntExtra("card_id",0);
        Log.i("Card Id ","Card Id : "+cardId);
        final int collId = getIntent().getIntExtra("collection_id",0);
        Log.i("Collection Id ","Collection Id : "+collId);
    
        position = getIntent().getIntExtra("position",0);
        Log.i("position","position : "+position);
    
        String cardSQL = "SELECT cm.cardId, cm.objectId "+
         "FROM cardmedias AS cm "+
         "INNER JOIN cards AS cd "+
         "ON (cm.cardId = cd.objectId) "+
         "WHERE cd.collectionId="+collId +" AND cm.mediaType="+mediaType;
    
        Cursor cards = userDbHelper.executeSQLQuery(cardSQL);
        if (cards.getCount() == 0) {
            Log.i("", "No Image file");
            cards.close();
        } else if (cards.getCount() > 0) {
            for (cards.move(0); cards.moveToNext(); cards.isAfterLast()) {
                cardsId = Integer.parseInt(cards.getString(cards
                        .getColumnIndex("objectId")));
    
                card = Integer.parseInt(cards.getString(cards
                        .getColumnIndex("cardId")));
    
                String path = Environment.getExternalStorageDirectory()
                        + "/.Stampii/MediaCard/" + cardsId + ".png";
                ids.add(card);
                hm.put(cardsId, path);
    
                path = hm.get(cardsId);
                Log.i("","path : "+hm.get(cardsId));
                Log.i("","hm size : "+hm.size());
                images.add(path);
            }
        }
    
    
        Button back = (Button) findViewById(R.id.back_button);
        back.setOnClickListener(new View.OnClickListener() {
    
            @Override
            public void onClick(View v) {
                finish();
            }
        });
    
    
        viewFlow = (ViewFlow) findViewById(R.id.viewflow);
        viewFlow.setAdapter(new ImageAdapter(this, images),position);
    
    
        ImageButton prevBtn = (ImageButton) findViewById(R.id.previous_button);
        prevBtn.setOnClickListener(new View.OnClickListener() {
    
            @Override
            public void onClick(View v) {
                indexxx = viewFlow.getSelectedItemPosition()-1;
                if (indexxx>=0) {
                    viewFlow.setAdapter(new ImageAdapter(Cards.this, images),indexxx);
                    viewFlow.setSelectedItemPosition(indexxx);
                    Log.i("indexxx", "indexxx : " + indexxx);
                }
            }
        });
    
        ImageButton nextBtn = (ImageButton) findViewById(R.id.next_button);
        nextBtn.setOnClickListener(new View.OnClickListener() {
    
            @Override
            public void onClick(View v) {
                indexxx = viewFlow.getSelectedItemPosition()+1;
                if (indexxx<images.size()) {
                    viewFlow.setAdapter(new ImageAdapter(Cards.this, images),indexxx);
                    viewFlow.setSelectedItemPosition(indexxx);
                    Log.i("indexxx", "indexxx : " + indexxx);
                }
            }
        }); 
    
    
        Button info = (Button) findViewById(R.id.info_button);
        info.setOnClickListener(new View.OnClickListener() {
    
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(Cards.this, SingleCardInfo.class);
                intent.putExtra("card_id", ids.get(position));
                intent.putExtra("collection_id", collId);
                startActivity(intent);
            }
        });
    
    }
    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        viewFlow.onConfigurationChanged(newConfig);
    }
    

    }

    That should do the trick!

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

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a jquery bug and I've been looking for hours now, I can't
I have a French site that I want to parse, but am running into
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have a text area in my form which accepts all possible characters from
Does anyone know how can I replace this 2 symbol below from the string
I have thousands of HTML files to process using Groovy/Java and I need to
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a bunch of posts stored in text files formatted in yaml/textile (from
That's pretty much it. I'm using Nokogiri to scrape a web page what has

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.