android中的android:name属性

前端之家收集整理的这篇文章主要介绍了android中的android:name属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
请解释ArticleListFragment和ArticleReaderFragmet,因为它们在此代码中:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <fragment android:name="com.example.news.ArticleListFragment"
            android:id="@+id/list"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="match_parent" />
    <fragment android:name="com.example.news.ArticleReaderFragment"
            android:id="@+id/viewer"
            android:layout_weight="2"
            android:layout_width="0dp"
            android:layout_height="match_parent" />
</LinearLayout>

我不知道他们指的是什么?它是在源代码中使用的Fragment类(或其子类)还是用于布局的XML文件

如果它们是XML文件,那么它们必须位于何处?

解决方法

ArticleListFragment和ArticleReaderFragment是包含这些片段的Java代码的类的名称.

正如前面提到的那样,你可以让你的片段包含活动,但这样做并不是一个好习惯.

举个好例子,尝试使用Android Studio向导创建“带片段的空白活动”.它将分别为活动和片段创建一个活动类和一个片段类以及2个XML文件.

原文链接:https://www.f2er.com/android/317216.html

猜你在找的Android相关文章