xml ファイルで宣言せずに Android のアクティビティに画像を含める方法。
画像 (および実際の画像) の数は、ユーザーが前のアクティビティで選択したものによって決定され、インテントを介して渡されるためです。
基本的にインテントの余分なデータに従って画像を作成したいのですが、余分なデータ(配列)に対してforループを実行しています
これは、ImageViews をプログラムでレイアウトに追加する方法です...
ImageView imageView = new ImageView(this);
LinearLayout.LayoutParams vp = new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
imageView.setLayoutParams(vp);
imageView.setImageResource(R.id.drawableResource);
//You just need to create this layout to hold the images in your XML and get a reference to it...
someLinearLayout.addView(imageView);
よろしく!