Starting with a recent new version of ADT, I've noticed this new attribute on the layout XML files, for example:
(从最新的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" />
What is "tools:context" used for?
(什么是“工具:上下文”用于?)
How does it even know the exact path to the activity that is written there?
(它怎么知道写在那里的活动的确切路径?)
Does it look at the package of the app, inside the manifest? (它是否在清单中查看应用程序的包?)
Is it limited to classes that extend Context or only activities?
(它仅限于扩展Context或仅扩展活动的类吗?)
Is it usable for ListView items etc.? (它可用于ListView项目等吗?)
ask by android developer translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…