我正在android studio中完成我的第一个相当大的项目,在过去的三天里,我一直在努力:
我的应用程序有一个底部导航组件,可以打开另外3个片段,我想知道如何将listview实现为这3个片段之一。我设法将listview放在主布局(activity\u main.xml)中,但是一旦我将listview放在一个不是主布局的布局中,我就会得到一个npe。我想这是因为如果我尝试用findviewbyid(r.id.listview)将listview链接到它的数据,它会在activity\u main中查找listview。试图将listview链接到布局文件中组件的代码写入mainactivity.java中的oncreate中。如何告诉程序在layout\u with \u list.xml中查找listview?
我读到另一个问题,我需要将oncreate中的setcontentview(r.layout.activity\u main)更改为setcontentview(r.layout.layout\u with\u list),但这只会产生另一个错误。
那么,如何将listview正确地放入另一个片段中,以便在使用底部导航更改选项卡并使其显示数据时,它不会在主布局中浮动?
我得到的错误是:
Attempt to invoke virtual method 'void android.widget.ListView.setAdapter(android.widget.ListAdapter)' on a null object reference
这是相关的代码位:
主活动.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lv_productlist = findViewById(R.id.lv_productlist);
showFoodOnListView(db_helper);
}
将数据传递到listview的代码:
private void showFoodOnListView(DB_Helper db_helper2) {
food_ArrayAdapter = new ArrayAdapter<Product_Model>(MainActivity.this, android.R.layout.simple_list_item_1, db_helper2.getEveryone());
lv_productlist.setAdapter(food_ArrayAdapter);
}
用\u list.xml布局\u
<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/lv_productlist"
android:name="com.ocdm.prepper.ListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
app:layoutManager="LinearLayoutManager"
tools:context=".ListFragment"
tools:listitem="@layout/fragment_list" />
===============================解决方案===============================
感谢[https://stackoverflow.com/users/4039784/hayssam-soussi]
我能想出来。
lv_productlist = (ListView) view.findViewById(R.id.R.id.lv_productlist);
showFoodOnListView(db_helper);
我不得不将上面的代码移到相应的java类中,例如fragment_a.java。
然后我必须将showfoodonlistview方法移动到fragment_a.java中,并将上下文设置为 getActivity():
.
food_ArrayAdapter = new ArrayAdapter<Product_Model>(getActivity(), android.R.layout.simple_list_item_1, db_helper2.getEveryone());
1条答案
按热度按时间ajsxfq5m1#
假设您需要将listview添加到片段a
首先,必须为片段a(即fragment_a.xml)创建一个布局
添加您的
ListView
分割.xml然后你的
FragmentA.java
代码应如下所示: