안녕하세요.


레이아웃 작업을 하다가 평소에 못보던게 보여서 질문드립니다.


찾아봐도 관련 글이 없네요.


아마 ADT 가 버전업이 되면서 생긴거 같은데요.


프로젝트 생성 시 자동으로 생성되는 액티비티의 레이아웃 xml 파일을 보니까.


아래 코드처럼 TextView 에 "tools:context" 가 생겼네요. 제가 모르고 있었나요?


이거 혹시 몬지 아십니까?


 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	xmlns:tools="http://schemas.android.com/tools"
	android:layout_width="match_parent"
	android:layout_height="match_parent" >

	<TextView
		android:layout_width="wrap_content"
		android:layout_height="wrap_content"
		android:layout_centerHorizontal="true"
		android:layout_centerVertical="true"
		android:text="@string/hello_world"
		tools:context=".MainActivity" />

</RelativeLayout>