본문 바로가기
프로그래밍/Android

XML 화면을 만들때 개발 화면에서만 보이게 하는법(tools)

by Youngs_ 2021. 10. 26.

아래 코드처럼 tools:text를 입력하면 안드로이드 스튜디오에는 테스트라는 글자가 보이지만 빌드를 한후 AVD 혹은 단말기에서 확인을하면 테스트라는 글자가 안보이게된다.

이는 다른 옵션에도 동일하게 적용가능하다.

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" <!--tools가 안나오면 해당줄을 입력한다.-->

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30dp"
tools:text="테스트"/>

</androidx.constraintlayout.widget.ConstraintLayout>

 

텍스트뷰에서 '<'를 입력하고 싶으면 '&lt;'를 입력하고 '>'를 입력하고 싶으면 '&gt;'를 입력한다.

댓글