確定 Android 上的裝置方向
要確定 Android設備的方向(橫向或縱向),請使用以下方法:
解決方案:
設備的當前方向會影響資源的檢索,可以透過資源的設定物件存取:
getResources().getConfiguration().orientation;
透過檢查其值來評估方向:
int orientation = getResources().getConfiguration().orientation; if (orientation == Configuration.ORIENTATION_LANDSCAPE) { // In landscape } else { // In portrait }
有關更多信息,請參閱Android 開發者文件。
以上是如何確定我的 Android 裝置處於橫向模式還是縱向模式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!