こんにちは、アクティビティ内の画像ビューの高さと幅のプロパティを変更したかったのですが、次の方法で試しましたが、うまくいきません...
View card_view = getLayoutInflater().inflate(R.layout.card_details1,null);
coupon_img = (ImageView) card_view.findViewById(R.id.coupon_image);
// I tried this ////////
coupon_img.getLayoutParams().height = 20;
coupon_img.getLayoutParams().width = 20;
// I also tried this ////
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100);
coupon_img.setLayoutParams(layoutParams);
// also this one ////
coupon_img.setMaxHeight(10);
しかし、imageview src の高さと幅を変更できません。私がやっている間違いはありますか?これを行う方法?助けが必要です...ありがとう...