我已经阅读了 Android 开发人员指南中有关Fragments的文档,并且我看到有时他们指定要使用 Fragment 标签属性android:name实例化的类,有时他们使用class:属性:
<fragment
android:name="com.example.news.ArticleReaderFragment"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment
class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
android:id="@+id/titles"
android:layout_weight="1"
android:layout_width="0px"
android:layout_height="match_parent" />
android:name和class:可以互换吗?如果我在 Eclipse 中使用自动完成功能,它们都会显示相同的文档提示(即属性提供要实例化的类名)。当要实例化的类的名称与java文件名不同时,也许您必须使用第二个,例如FragmentLayout.java文件中的TitlesFragment?或者我可以将语法package.fileDOTjava$Class也与android:name属性一起使用吗?
我想要一些关于 Android Java 类的 XML 标记和属性的文档(我已经在另一个问题中询问过它)。