7
Android 레이아웃 파일의 "tools : context"는 무엇입니까?
최신 버전의 ADT부터는 레이아웃 XML 파일에서 다음과 같은 새로운 속성을 발견했습니다. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" tools:context=".MainActivity" /> "tools : context"는 무엇에 사용됩니까? 거기에 기록 된 활동의 정확한 경로를 어떻게 알 수 있습니까? 매니페스트 내부의 앱 패키지를 봅니까? 컨텍스트를 확장하거나 활동 만 확장하는 클래스로 제한됩니까? ListView 항목 등에 사용할 …