根据电话方向更改参数

时间:2012-05-19 17:08:35

标签: android

我想设置这些参数

IF (the phone is in vertical orientation)
     imageView.setLayoutParams(new Gallery.LayoutParams(400, 400));

ELSE ()
     imageView.setLayoutParams(new Gallery.LayoutParams(600, 600));

1 个答案:

答案 0 :(得分:0)

您可以使用getRotation()方法检查设备的旋转,并在活动重新开始更改方向时设置图像的参数!

有关该功能的详细信息,请参阅this链接,并在if条件下使用。