안드로이드 개발 No orientation specified, and the default is horizontal. This is a common source of bugs when children are added dynamically. 에러 해결
안드로이드 개발반응형
안드로이드 개발 No orientation specified, and the default is horizontal. This is a common source of bugs when children are added dynamically. 에러 해결 |
환경: Android Studio |
에러 메시지의 내용처럼 LinearLayout 레이아웃은 무조건 세로/가로 방향을 결정하는 orientation 속성을 정의해야 합니다. XML 에 No orientation specified, and the default is horizontal 메시지가 나타난 곳을 잘 살펴 보세요. 그리고 해당 레이아웃 설정에 horizontal, vertical 중 하나를 입력합니다.
▼ 그림처럼 LinearLayout 에 에러가 났습니다. orientation 속성을 정의하라는 내용입니다.
▼ 해결은 간단합니다. orientation 속성값으로 horizontal 과 vertical 중 하나를 입력해 줍니다.
반응형
'안드로이드 개발' 카테고리의 다른 글
안드로이드 개발 Activity 호출하고 결과값을 받는 onActivityForResult 사용하는 방법 (0) | 2017.12.30 |
---|---|
안드로이드 개발 서비스(Service) 컴포넌트 예제 구현하는 방법 (0) | 2017.12.27 |
안드로이드 개발 생성자 추가하는 방법, There is no default constructor available in (0) | 2017.12.23 |
안드로이드 개발 RelativeLayout 화면을 Java 소스에서 구현하는 방법 (0) | 2017.12.17 |
안드로이드 개발 Android WebView 로컬 HTML 파일 표현하는 방법 (0) | 2017.12.04 |
안드로이드(Android) 개발 컴포넌트 공유 객체 Application 만들어서 사용하는 방법 (0) | 2017.11.30 |
안드로이드 개발 가로/세로 화면 전환할 때 배경화면 변경하는 방법 (0) | 2017.11.27 |
안드로이드 개발 ViewHolder 패턴 이용해서 ListView 성능 향상하는 방법 (0) | 2017.11.22 |