안드로이드 Wrong orientation? No orientation specified
전에는 에러가 아니던게 이클립스가 업데이트 되어서 그런지 아래와 같은 에러가 나네요~
Wrong orientation? No orientation specified, and the default is horizontal,
yet this layout has multiple children where at least one has `layout_width="match_parent"`
이런 경우엔 orientation 이 가로냐 세로냐에 대한 정보가 없어서 그런가봅니다.
<LinearLayout
android:id="@+id/layout_title"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:baselineAligned="false"
android:background="@android:color/transparent"
>
android:orientation="" 에 horizontal 또는 vertical 을 넣어주면 됩니다.
반응형
'안드로이드' 카테고리의 다른 글
안드로이드 Play스토어 업데이트 거부됨 (0) | 2018.06.12 |
---|---|
안드로이드 앱 삭제된 이유 (0) | 2018.06.07 |
안드로이드 USB Debugging 적용 방법 (4) | 2018.05.30 |
안드로이드 Fix the build path then try building this project (0) | 2018.05.30 |
안드로이드 Device does not have package com.google.android.gsf (0) | 2018.05.30 |