我试图显示firebase realtime数据库中的项,我在数据库中有两个节点,我在适配器类getitemcount()
函数上使用了Log方法,它显示有2个,但它没有显示在我的UI中,两项视图正在生成,但没有显示带有名称和mob的内容。
package com.example.jamsecure;
import android.os.Bundle;
import android.widget.Toast;
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 com.google.firebase.database.ValueEventListener;
import java.util.ArrayList;
import java.util.List;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
public class User_Select_Jam_Studio extends AppCompatActivity {
List<FetchData> fetchData;
RecyclerView recyclerView;
HelperAdapter helperAdapter;
DatabaseReference databaseReference;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user__select__jam__studio);
recyclerView=findViewById(R.id.recyclerview);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager((new LinearLayoutManager(this)));
fetchData=new ArrayList<>();
helperAdapter=new HelperAdapter(fetchData);
recyclerView.setAdapter(helperAdapter);
databaseReference= FirebaseDatabase.getInstance().getReference("Owners");
databaseReference.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(@NonNull DataSnapshot dataSnapshot) {
for(DataSnapshot ds:dataSnapshot.getChildren())
{
FetchData data=ds.getValue(FetchData.class);
fetchData.add(data);
helperAdapter.notifyDataSetChanged();
}
}
@Override
public void onCancelled(@NonNull DatabaseError error) {
Toast.makeText(User_Select_Jam_Studio.this,"Data base problem",Toast.LENGTH_LONG).show();
}
});
}
}
package com.example.jamsecure;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import java.util.List;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
public class HelperAdapter extends RecyclerView.Adapter {
List<FetchData> fetchDataList;
public HelperAdapter(List<FetchData> fetchDataList) {
this.fetchDataList = fetchDataList;
}
@NonNull
@Override
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view= LayoutInflater.from(parent.getContext()).inflate(R.layout.jamrooms,parent, false);
ViewHolderClass viewHolderClass = new ViewHolderClass(view);
return viewHolderClass;
}
@Override
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, int position) {
ViewHolderClass viewHolderClass=(ViewHolderClass)holder;
FetchData fetchData=fetchDataList.get(position);
viewHolderClass.name.setText(fetchData.getName());
viewHolderClass.jamr.setText(fetchData.getJamrate());
viewHolderClass.mob.setText(fetchData.getMob());
}
@Override
public int getItemCount() {
int a =fetchDataList.size();
String b=Integer.toString(a);
Log.d("TAG",b);
return fetchDataList.size();
}
public class ViewHolderClass extends RecyclerView.ViewHolder{
TextView name,jamr,mob;
public ViewHolderClass(@NonNull View itemView) {
super(itemView);
name=itemView.findViewById(R.id.name);
jamr=itemView.findViewById(R.id.jamrate);
mob=itemView.findViewById(R.id.mob);
}
}
}
package com.example.jamsecure;
public class FetchData {
String sname;
String jam_rate;
String phone;
public FetchData(){}
public FetchData( String sname, String jam_rate, String phone) {
this.sname = sname;
this.jam_rate = jam_rate;
this.phone = phone;
}
public void setSname(String sname) {
this.sname = sname;
}
public void setJam_rate(String jam_rate) {
this.jam_rate = jam_rate;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getName() {
return sname;
}
public String getJamrate() {
return jam_rate;
}
public String getMob() {
return phone;
}
}
<?xml version="1.0" encoding="utf-8"?>
<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:background="@drawable/item_layout"
android:orientation="vertical"
android:visibility="visible"
tools:visibility="visible">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/name"
android:textColor="#000000"
android:textSize="40sp" />
<TextView
android:id="@+id/mob"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/mob"
android:textColor="#000000"
android:textSize="40sp" />
<TextView
android:id="@+id/jamrate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/jam_rate"
android:textColor="#000000"
android:textSize="40sp" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:background="@drawable/back6"
tools:context=".User_Select_Jam_Studio">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
代码的问题在于“FetchData”类中getter的名称不正确。例如,“phone”字段的getter应该是getPhone(),而不是getMob()。因此您的“FetchData”类应该如下所示:
public class FetchData {
private String jam_rate, location, phone, semail, sname;
public FetchData() {}
public FetchData(String jam_rate, String location, String phone, String semail, String sname) {
this.jam_rate = jam_rate;
this.location = location;
this.phone = phone;
this.semail = semail;
this.sname = sname;
}
public String getJam_rate() {
return jam_rate;
}
public void setJam_rate(String jam_rate) {
this.jam_rate = jam_rate;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getSemail() {
return semail;
}
public void setSemail(String semail) {
this.semail = semail;
}
public String getSname() {
return sname;
}
public void setSname(String sname) {
this.sname = sname;
}
}
请注意setter和getter不是必需的。设置器总是可选的,因为如果JSON属性没有设置器,Firebase客户机将直接在字段上设置值。如果将字段公开,getter也是可选的。因此,类的更简化版本可能如下所示:
public class FetchData {
public String jam_rate, location, phone, semail, sname;
public FetchData() {}
public FetchData(String jam_rate, String location, String phone, String semail, String sname) {
this.jam_rate = jam_rate;
this.location = location;
this.phone = phone;
this.semail = semail;
this.sname = sname;
}
}
应用程序运行良好...只是数据没有出现...我已经添加了sha用户电子邮件显示在登录后,在登录活动中我已经添加了 但是在实时数据库数据不显示以防万一…我也等了半个小时,尝试了所有的东西…网络也不错。数据库中的数据库规则的数据库图片 mainActivity.java//不能用于单个子级,即firebaseDatabase.getInstance().getReference().child(“aj
我正在尝试获取我的用户名,并在应用程序打开时向他/她问好。但我无法根据某个用户的uid获取数据。当我运行应用程序时,祝酒词从未真正出现。 数据库结构 密码
我正在尝试为一个活动构建一个票务预订应用程序,我设法完成了注册和登录部分。登录后,用户配置文件会显示出来,其中包含一些关于姓名、年龄、电子邮件等的文本视图。我想从实时数据库中读取数据并将其放入文本视图中。我不知道问题出在哪里,但文本视图不会显示数据。 用户配置文件类 用户类
我是编程新手,我开始使用Ionic框架构建应用程序作为体验。我目前正在学习构建一个基本的社交媒体应用程序,匿名用户可以在该平台上发帖。 我现在处于用户可以评论帖子的阶段。但是,我很难在视图上显示每个帖子的实时评论数。 我计算评论的方法是从Firebase获取帖子数据,计算评论数量,然后显示给视图。 我尝试过使用间隔来每隔x秒获取post数据,以刷新post数据。这有点可行,但问题是离子内容(视图)
我已经花了几个小时阅读产品分支中的0和1。请在Firebase数据库有经验的人帮助我:(