我首先构建了一个ListView,它包含多个没有Firebase的TextViews,并且运行良好(注意:我将数据存储在字符串数组中)。然后,我创建了一个ListView(ArrayAdapter)和一个带有Firebase的TextView,它也运行良好(注意:我将数据存储在ArrayList中)。但是一旦我将这两个项目合并在一起,它就不起作用了(注意:这个项目中存在多个TextView,但我现在只尝试填充我的第一个TextView)。我的应用程序一打开就关闭。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ListView
android:id="@+id/eventsListView"
android:layout_width="0dp"
android:layout_height="100dp"
android:layout_marginStart="32dp"
android:layout_marginTop="32dp"
android:layout_marginEnd="32dp"
android:divider="@android:color/darker_gray"
android:dividerHeight="1dp"
android:scrollbars="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/eventTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:paddingTop="5dp"
android:textSize="18sp"
android:textStyle="bold" />
<TextView
android:id="@+id/eventDetails"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingBottom="5dp"
android:textSize="16sp"
android:textStyle="italic" />
<TextView
android:id="@+id/eventDescription"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center_vertical"
android:paddingBottom="5dp"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
package com.example.firebase_listview_2;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ListAdapter;
import android.widget.ListView;
import com.google.firebase.database.ChildEventListener;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
ListView eventsList;
DatabaseReference dawnEvents;
ArrayList<String> titleArray = new ArrayList<>();
ArrayList<String> eventStartArray = new ArrayList<>();
ArrayList<String> eventFinishArray = new ArrayList<>();
ArrayList<String> eventGenderArray = new ArrayList<>();
ArrayList<String> eventAgeArray = new ArrayList<>();
ArrayList<String> descriptionArray = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ListAdapter adapter = new com.example.firebase_listview_2.ListAdapter(this, titleArray, eventStartArray, eventFinishArray, eventGenderArray, eventAgeArray, descriptionArray);
eventsList = findViewById(R.id.eventsListView);
eventsList.setAdapter(adapter);
dawnEvents = FirebaseDatabase.getInstance().getReference("Timetable/Ladybridge High School, Bolton, UK/Date/2019-11-30/Events/Spanish Lesson");
dawnEvents.addChildEventListener(new ChildEventListener() {
@Override
public void onChildAdded(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
String value = dataSnapshot.getValue(String.class);
titleArray.add(value);
adapter.notify(); // In the separate project where I created a ListView (ArrayAdapter) with a single TextView with Firebase, I used .notifyDataSetChanged() instead. When I use .notify() in that project, it no longer works. Is my use of .notify() in this project causing the issue? I cannot seem to use .notfiyDataSetChanged in this project.
}
@Override
public void onChildChanged(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
}
@Override
public void onChildRemoved(@NonNull DataSnapshot dataSnapshot) {
}
@Override
public void onChildMoved(@NonNull DataSnapshot dataSnapshot, @Nullable String s) {
}
@Override
public void onCancelled(@NonNull DatabaseError databaseError) {
}
});
}
}
下面是我的ListAdapter:
package com.example.firebase_listview_2;
import android.app.Activity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import java.util.ArrayList;
public class ListAdapter extends ArrayAdapter<String> {
private final Activity context;
private final ArrayList<String> titleArray;
private final ArrayList<String> eventStartArray;
private final ArrayList<String> eventFinishArray;
private final ArrayList<String> eventGenderArray;
private final ArrayList<String> eventAgeArray;
private final ArrayList<String> descriptionArray;
public ListAdapter(Activity context, ArrayList<String> titleArray, ArrayList<String> eventStartArray, ArrayList<String> eventFinishArray, ArrayList<String> eventGenderArray, ArrayList<String> eventAgeArray, ArrayList<String> descriptionArray) {
super(context, R.layout.activity_list_view, titleArray);
this.context = context;
this.titleArray = titleArray;
this.eventStartArray = eventStartArray;
this.eventFinishArray = eventFinishArray;
this.eventGenderArray = eventGenderArray;
this.eventAgeArray = eventAgeArray;
this.descriptionArray = descriptionArray;
}
public View getView(int position, View view, ViewGroup parent) {
LayoutInflater inflater = context.getLayoutInflater();
View rowView = inflater.inflate(R.layout.activity_list_view, null, true);
TextView eventTitle = rowView.findViewById(R.id.eventTitle);
TextView eventDetails = rowView.findViewById(R.id.eventDetails);
TextView eventDescription = rowView.findViewById(R.id.eventDescription);
eventTitle.setText(titleArray.get(position));
String eventDetailsConcat = eventStartArray.get(position) + "-" + eventFinishArray.get(position) + ", " + eventGenderArray.get(position) + ", " + eventAgeArray.get(position);
eventDetails.setText(eventDetailsConcat);
eventDescription.setText(descriptionArray.get(position));
return rowView;
}
}
这是我的Firebase数据库结构的相关示例:
Timetable
Ladybridge High School, Bolton, UK
Date
2019-11-30
Spanish Lesson
Age: "All ages"
Description: "Example description for Spanish lesson"
Finish: "18:00"
Gender: "Male and female"
Start: "16:00"
Title: "Spanish for Beginners"
在Firebase事件侦听器中,您只是在TitlearRay中添加值。应用程序很可能会在这一行抛出NullPointerException:
String eventDetailsConcat = eventStartArray.get(position) + "-" + eventFinishArray.get(position) + ", " + eventGenderArray.get(position) + ", " + eventAgeArray.get(position);
从ListAdapter。
这是我第一次来到这个网站。我已经在web上搜索了如何将sqlite数据库填充到可扩展的listview,但我失败了。 我遵循这些步骤来了解如何创建可扩展的listview,并修改一些代码使其动态化。 当我试图运行模拟器时,程序崩溃了。 我是android开发的新手,我需要你们专家的帮助…提前道谢。 哦..我很抱歉。这是我的logcat的结果...这只是错误部分。
我正在创建一个web应用程序,您必须从数据库中读取对象/实体的列表,并将其填充到JSF
我有个分类表 我想填充
简介 Laravel 可以用 seed 类轻松地为数据库填充测试数据。所有的 seed 类都存放在 database/seeds 目录下。你可以任意为 seed 类命名,但是更应该遵守类似 UsersTableSeeder 的命名规范。Laravel 默认定义的一个 DatabaseSeeder 类。可以在这个类中使用 call 方法来运行其它的 seed 类从而控制数据填充的顺序。 编写 See
问题内容: 我一直在尝试使用从数据库查询的数据加载TableView,但似乎无法使其正常工作。 这是我第一次尝试用数据库查询项填充数据库的情况,以防我的代码看起来杂乱无章,而且效果不佳。 FXML是通过JavaFx SceneBuilder完成的。 这是数据库查询类: 这是通过JavaFx场景生成器生成的FXML脚本: 问题答案: 这是将数据从数据库填充到tableView的最佳解决方案。 这是参