如何在 Android Studio 中使用 inflater 从片段中获取列表视图

How to Using inflater to get a list view from fragment in Android Studio

我正在尝试从另一个 xml 文件 (fragment_friends.xml) 获取列表视图 ID,而我处于 activity_main.xml 布局中。我尝试了两种方法,但它们都无法正常工作。

下面的代码会导致应用程序立即崩溃,因为我正在尝试获取此布局中不存在的 ID (activity_main)

原代码

    ListView friendList = (ListView) findViewById(R.id.friend_listView);
    friendList.setAdapter(friendAdaptor);

下面的代码有效,但我无法将任何数据插入或显示到我的数据库中。

尝试 1 个代码:

    View inflatedView = getLayoutInflater().inflate(R.layout.fragment_friend, null);
    ListView friendList = (ListView) inflatedView.findViewById(R.id.friend_listView);
    friendList.setAdapter(friendAdaptor);

下面的代码数据库和 listView 可以工作,但是我的导航栏抽屉不见了,当我尝试返回 activity_main 时,应用程序崩溃了

尝试 2 个代码

    setContentView(R.layout.fragment_friend);
    ListView friendList = (ListView) inflatedView.findViewById(R.id.friend_listView);
    friendList.setAdapter(friendAdaptor);

app_bar_main.xml

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <!--<include layout="@layout/content_main" />-->
    <FrameLayout
        android:id="@+id/flContent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="?attr/actionBarSize"/>

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_margin="@dimen/fab_margin"
        app:srcCompat="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

我认为您的问题的根源归结为对一般 Android 片段 API 不熟悉。没关系;每个人开始时都是新的。但这意味着你的问题很难简洁地回答(超过"read about Fragments")。

当然,您应该从阅读 Fragments 开始:https://developer.android.com/guide/components/fragments.html

不过,我认为我们可以简要介绍一下。

所有片段都必须托管在 Activity 中。正常的方法是在 activity 的 xml 布局中添加 <fragment> 标签,或者在 activity 中包含 <FrameLayout>' s xml 布局 然后 使用 FragmentTransaction 从该帧动态 add/replace/remove 片段。

在您发布的代码中,在 app_bar_main.xml 内,我看到了这个:

<FrameLayout
    android:id="@+id/flContent"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="?attr/actionBarSize"/>

这显然是您的片段最终将存在的地方,但您必须在 Java 代码中自行将它们添加到框架中。你实际上已经有一个方法可以做到这一点:

private void displaySelectedScreen(int id){
    Fragment fragment = ...

    if(fragment != null){
        FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
        ft.replace(R.id.flContent, fragment);
        ft.commit();
    }

    ...
}

看起来这似乎是当您的用户单击导航抽屉中的项目时使用的,但概念是相同的。如果您希望您的应用始终以显示的 "friends" 片段启动,您可以将此代码添加到 activity 的 onCreate() 方法中:

if (savedInstanceState == null) {
    getSupportFragmentManager()
        .beginTransaction()
        .replace(R.id.flContent, new friend())
        .commit();
}

现在您将有一个 friend 片段可以使用!

但是,不能保证片段事务会立即执行,因此即使(作为用户)您总是会在应用程序启动时看到此 friend 片段,但您不一定会能够在编写此代码后立即与它交互(作为程序员)。因此,您还必须将调用从 onCreate() 方法移至 populateFriendList()

相反,您应该从 friend 片段本身填充好友列表!执行此操作的正确位置可能是在片段的 onActivityCreated() 方法内。

要从 Fragment 子类中查找视图,您不能像在 Activity 中那样编写 findViewById()。但是,您可以这样写:getView().findViewById()...只要您在 onCreateView() 方法返回后执行此操作即可。

无论如何,这个答案变得非常长,即使我尽量保持它尽可能短。我希望这些信息足以让您启动您的应用程序 运行。祝你好运。