set height of imageview as matchparent programmatically
Solution 1:
imageView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
Solution 2:
imageView.getLayoutParams().height= ViewGroup.LayoutParams.MATCH_PARENT;