Home 안드로이드 레이아웃 xmlns:android,app,tools
Post
Cancel

안드로이드 레이아웃 xmlns:android,app,tools

레이아웃 XML

xmlns

  • XML Namespace의 약자
  • 예시

    1
    2
    3
    
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      xmlns:tools="http://schemas.android.com/tools"
    
  • xmlns 다음의 문장(android, app, tools)은 스키마나 이러한 단어와 관련된 속성을 이름으로 정의한 것

  • xmlns:android는 안드로이드 시스템에서 정의한 속성을 의미
  • xmlns:app외부 라이브러리에 있는 xml에서 속성을 참조
    • activity_main.xml에서 app:layout_constraintTop_toTopOf 속성을 정의한 후 Ctrl + b를 누르면 어떤 xml을 참조하는 지 알 수 있음
  • xmlns:tools은 디자인과 관련된 속성들로 구성되어 있음
This post is licensed under CC BY 4.0 by the author.

인텐트 및 인텐트 필터

안드로이드 레이아웃(ConstraintLayout)의 layout_constraintX_toXOf

Comments powered by Disqus.