gpt4 book ai didi

android - 包含自定义 ListView 的 fragment

转载 作者:行者123 更新时间:2023-11-29 01:50:18 25 4
gpt4 key购买 nike

我被卡住了,我不知道如何在 Fragment 中实现 ListView,我正在尝试制作聊天图形用户界面。

是否有可能做这样的事情,还是我完全被风吹走了?

感谢您的帮助!问候新手! ^^

这是 fragment 代码:

public static class ChatFragment extends Fragment {

public ChatFragment() {
// Empty constructor required for fragment subclasses
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_chat, container, false);

/*FragmentManager fm = getActivity().getFragmentManager();
DataListFragment list = new DataListFragment();
fm.beginTransaction().add(R.id.list_message_History, list).commit();
*/

getActivity().setTitle(R.string.chat);
return rootView;
}
}

但是如你所见,我不明白如何将它们全部连接起来。我有一个自定义的 ListFragment,它使用 ArrayAdapter 来处理数据。

这是我的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@id/android:list"
android:orientation="horizontal">
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"/>
</LinearLayout>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
</LinearLayout>

最佳答案

您不必在 ChatFragment 中添加另一个 Fragment 即可拥有一个 ListView。从您的布局中获取 ListView 的引用,如下所示:

ListView list = (ListView)rootView.findViewById(R.id.list);

现在设置适配器和数组/列表到它,你就完成了。

并且不要在 fragment 内进行 fragment 事务。将您的 Activity 和 DrawerLayout 用于此作业。

关于android - 包含自定义 ListView 的 fragment ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18547799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com