제가 여기저기 소스를 보다가
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="fill_parent"
android:layout_weight="1"
>
<TableRow android:id="@+id/tableRow1"
android:layout_height="match_parent"
android:layout_width="fill_parent"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="fill_parent"
android:layout_weight="1" >
<Button android:id="@+id/popup_menu_button2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
........
이런소스를 봤는데 xmlns:android="http://schemas.android.com/apk/res/android" 를 한 layout 파일에서 여러번 사용해도 괜찮은건가요?
최초 상단 레이아웃때 한번만 선언하는걸로 알고있었는데...
이렇게 여러번 선언하면 앱에 영향은 없는지 궁금합니다..




xml의 네임스페이스를 의미하는것이긴한데, 여러곳에 작성해도 아마 별 의미는 없을것 같습니다만,,