我想使它成爲我的應用程序永遠不會進入肖像模式,但能夠在2個橫向屏幕視圖之間切換。我知道這很容易在薑餅(2.3)來完成,但我有麻煩做手工爲Android的其他版本,我的代碼如下:使用Display.getRotation()的屏幕旋轉
Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
int orientation = display.getRotation();
if (orientation == 1) {
/* The device is rotated to the left. */
Log.v("Left", "Rotated Left");
} else if (orientation == 3) {
/* The device is rotated to the right. */
Log.v("Right", "Rotated Right");
} else {
}
我的問題是我怎麼翻轉X和屏幕視圖的y軸取決於檢測到的旋轉?我如何獲得它們以扭轉它們?
必須有辦法手動設置x軸和y軸? android操作系統如何知道自己做它? – SamRowley 2011-01-21 10:40:29