我想设置这些参数
IF (the phone is in vertical orientation)
imageView.setLayoutParams(new Gallery.LayoutParams(400, 400));
ELSE ()
imageView.setLayoutParams(new Gallery.LayoutParams(600, 600));
答案 0 :(得分:0)
您可以使用getRotation()
方法检查设备的旋转,并在活动重新开始更改方向时设置图像的参数!
有关该功能的详细信息,请参阅this链接,并在if
条件下使用。