I am developing one small application and i have little knowledge in android. so i need your help. Actually i put some bulk of images in assets sub folder. now what i want is, i want to read that all images which i had put into the assets sub folder for example "images" folder and then i want to fill all images in grid view. please friends please help me to fill images in grid view. I had tried following link but i did not get satisfaction from this site Loading Images from assets to GridView with smooth Scrolling.
Fetch Images from assets folder and fill gridview in android
2k Views Asked by Jignesh Patel At
3
There are 3 best solutions below
0

I actually found this answer on https://xjaphx.wordpress.com/2011/10/02/store-and-use-files-in-assets/
public void loadFromAsset() {
InputStream is = getAssets().open("filename.extension");
//Load image as drawable
Drawable draw = Drawable.createFromStream(is, null);
//Once you get the drawable, set the image to imageView
imageView.setImageDrawable(draw);
}
0

public class Flower_Mahendi extends Activity {
ArrayList<String> listPath;
GridViewAdapter adp;// = new GridViewAdapter(null, 0, listPath);
GridView gridView;
//Bitmap listBitmap;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.flower_mahendi);
AssetManager assetManager = getResources().getAssets();
gridView = (GridView) findViewById(R.id.gridView1);
try {
String[] files = assetManager.list("kids");
listPath = new ArrayList<String>();
for (String strImageName : files) {
String pathAssets = "kids" + File.separator
+ strImageName;
listPath.add(pathAssets);
}
} catch (Exception e) {
// TODO: handle exception
}
try {
if (listPath!= null) {
adp = new GridViewAdapter(this,R.layout.grid_double, listPath);
gridView.setAdapter(adp);
}
} catch (Exception e) {
e.printStackTrace();
}
}
Then paste Below code in the CustomAdapter GridViewAdapter
public class GridViewAdapter extends BaseAdapter {