I have programmatically added a Linear Layout in Android and added ImageViews to it. I used the following code for the same.
LinearLayout layout = (LinearLayout)findViewById(R.id.linear1);
for(int i=0;i<4;i++)
{
imagev = new ImageView(this);
imagev.setLayoutParams(new android.view.ViewGroup.LayoutParams(300,150));
imagev.setMaxHeight(600);
imagev.setMaxWidth(600);
layout.addView(imagev);
}
If i were to implement this, i would give each of the imageviews a specific tag, and then set the same onClickListener to each imageview. Then in the onClickListener, i would check the tag for the imageview that was clicked and do an action depending on whatever imageview was clicked.
This would avoid having to have 4 different onClickListener, and give you some cleaner code.