How can I add multiple imageviews generated programmatically from linearlayout to room database. I have used byte for it but I can only store one image. I want to store all images in the same row
ImageView imageview = new ImageView(this);
linear.addView(imageView); ```