最佳答案
从最新版本的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" />
什么是“工具:上下文”?
它甚至如何知道那里写入的活动的确切路径?它会查看清单中的应用程序包吗?
它仅限于扩展Context的类还是仅限于活动?它是否可用于ListView项目等?