У меня есть RelativeLayout
RelativeLayout myLayout = new RelativeLayout(this);
Затем я добавляю 2 ImageView в этот макет:
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(20, 20);
ImageView img1 = new ImageView(this);
// Here I give the position of img1
ImageView img2 = new ImageView(this);
// And here the position and img2
myLayout.addView(img1, params);
myLayout.addView(img2, params);
setContentView(myLayout);
И вот у меня проблема: я хочу показать и нажать на2 ImageViews, но на моем экране виден только img2.
Есть ли проблема с z-index или чем-то еще?