제가 여기저기 소스를 보다가

 

<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 파일에서 여러번 사용해도 괜찮은건가요?

최초 상단 레이아웃때 한번만 선언하는걸로 알고있었는데...

이렇게 여러번 선언하면 앱에 영향은 없는지 궁금합니다..