728x90
반응형
질문 : Android 휴대 전화에서 방향 확인
Android 휴대폰이 가로 또는 세로인지 어떻게 확인할 수 있습니까?
답변
검색 할 리소스를 결정하는 데 사용되는 현재 구성은 Resources의 Configuration
개체에서 사용할 수 있습니다.
getResources().getConfiguration().orientation;
값을보고 방향을 확인할 수 있습니다.
int orientation = getResources().getConfiguration().orientation;
if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
// In landscape
} else {
// In portrait
}
자세한 정보는 Android 개발자 에서 찾을 수 있습니다.
출처 : https://stackoverflow.com/questions/2795833/check-orientation-on-android-phone
728x90
반응형
'프로그래밍 언어 > Android' 카테고리의 다른 글
Android 에뮬레이터에 APK 파일을 설치하는 방법 (windows, linux, mac) (0) | 2021.07.15 |
---|---|
SharedPreferences에서 commit ()과 apply ()의 차이점 (0) | 2021.07.14 |
Android 8: Cleartext HTTP traffic not permitted 오류 (0) | 2021.07.12 |
Android Pull-to-Refresh 구현 방법 (0) | 2021.07.07 |
Android에서 프로그래밍 방식으로 현재 GPS 위치를 얻는 방법 (0) | 2021.07.07 |