- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取存储在 Firebase 数据库中的信息并以列表的形式显示它。信息被正确提取,调试器显示它存在于变量中。但是在检查它们并设置 TextView 之后,它会抛出异常:
错误日志:
com.google.firebase.database.DatabaseException: Can't convert an object of type java.lang.String to type com.dodo.seminar.Posts
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.dodo.seminar, PID: 6841
com.google.firebase.database.DatabaseException: Can't convert object of type java.lang.String to type com.dodo.seminar.Posts
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertBean(com.google.firebase:firebase-database@@16.1.0:423)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.deserializeToClass(com.google.firebase:firebase-database@@16.1.0:214)
at com.google.firebase.database.core.utilities.encoding.CustomClassMapper.convertToCustomClass(com.google.firebase:firebase-database@@16.1.0:79)
at com.google.firebase.database.DataSnapshot.getValue(com.google.firebase:firebase-database@@16.1.0:212)
at com.firebase.ui.database.FirebaseRecyclerAdapter.parseSnapshot(FirebaseRecyclerAdapter.java:151)
at com.firebase.ui.database.FirebaseRecyclerAdapter.getItem(FirebaseRecyclerAdapter.java:140)
at com.firebase.ui.database.FirebaseRecyclerAdapter.onBindViewHolder(FirebaseRecyclerAdapter.java:183)
at android.support.v7.widget.RecyclerView$Adapter.onBindViewHolder(RecyclerView.java:6781)
at android.support.v7.widget.RecyclerView$Adapter.bindViewHolder(RecyclerView.java:6823)
at android.support.v7.widget.RecyclerView$Recycler.tryBindViewHolderByDeadline(RecyclerView.java:5752)
at android.support.v7.widget.RecyclerView$Recycler.tryGetViewHolderForPositionByDeadline(RecyclerView.java:6019)
at android.support.v7.widget.RecyclerView$Recycler.getViewForPosition(RecyclerView.java:5858)
at android.support.v7.widget.RecyclerView$Recycler.getViewForPosition(RecyclerView.java:5854)
at android.support.v7.widget.LinearLayoutManager$LayoutState.next(LinearLayoutManager.java:2230)
at android.support.v7.widget.LinearLayoutManager.layoutChunk(LinearLayoutManager.java:1557)
at android.support.v7.widget.LinearLayoutManager.fill(LinearLayoutManager.java:1517)
at android.support.v7.widget.LinearLayoutManager.onLayoutChildren(LinearLayoutManager.java:612)
at android.support.v7.widget.RecyclerView.dispatchLayoutStep2(RecyclerView.java:3924)
at android.support.v7.widget.RecyclerView.dispatchLayout(RecyclerView.java:3641)
at android.support.v7.widget.RecyclerView.consumePendingUpdateOperations(RecyclerView.java:1888)
at android.support.v7.widget.RecyclerView$1.run(RecyclerView.java:407)
at android.view.Choreographer$CallbackRecord.run(Choreographer.java:949)
at android.view.Choreographer.doCallbacks(Choreographer.java:761)
at android.view.Choreographer.doFrame(Choreographer.java:693)
at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:935)
at android.os.Handler.handleCallback(Handler.java:873)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:193)
at android.app.ActivityThread.main(ActivityThread.java:6669)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:858)
public class PostsActivity extends AppCompatActivity {
private FirebaseAuth mAuth;
private Toolbar mToolbar;
private DatabaseReference mDatabase;
private DatabaseReference mUserRef;
private FloatingActionButton mButton;
private RecyclerView mPostsList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_posts);
mAuth = FirebaseAuth.getInstance();
mButton = findViewById(R.id.posts_floatingActionButton);
if (mAuth.getCurrentUser() != null) {
mUserRef = FirebaseDatabase.getInstance().getReference().child("users").child(mAuth.getCurrentUser().getUid());
}
mDatabase = FirebaseDatabase.getInstance().getReference().child("posts");
mPostsList = (RecyclerView) findViewById(R.id.posts_list);
mPostsList.setHasFixedSize(true);
mPostsList.setLayoutManager(new LinearLayoutManager(this));
}
@Override
protected void onStart() {
super.onStart();
final FirebaseRecyclerAdapter<Posts, PostsViewHolder> firebaseRecyclerAdapter = new FirebaseRecyclerAdapter<Posts, PostsViewHolder>(
Posts.class,
R.layout.posts_single_layout,
PostsViewHolder.class,
mDatabase
) {
@Override
protected void populateViewHolder(final PostsViewHolder postsViewHolder, final Posts posts, int position) {
postsViewHolder.setStartingLocation(posts.getStarting_location());
postsViewHolder.setDestination(posts.getDestination());
postsViewHolder.setDescription(posts.getDescription());
}
};
mPostsList.setAdapter(firebaseRecyclerAdapter);
}
public static class PostsViewHolder extends RecyclerView.ViewHolder {
static View mView;
RelativeLayout parentLayout;
public PostsViewHolder(@NonNull View itemView) {
super(itemView);
mView = itemView;
parentLayout = itemView.findViewById(R.id.parent_layout);
}
public static void setStartingLocation(String name) {
TextView postsTextView = (TextView) mView.findViewById(R.id.posts_single_starting_location);
postsTextView.setText(name);
}
public static void setDestination(String comment) {
TextView postsTextView = (TextView) mView.findViewById(R.id.posts_single_destination);
postsTextView.setText(comment);
}
public static void setDescription(String comment) {
TextView postsTextView = (TextView) mView.findViewById(R.id.posts_single_description);
postsTextView.setText(comment);
}
}
}
public class Posts {
private String starting_location;
private String user_uid;
private String destination;
private String description;
private String time;
public Posts(String starting_location, String user_uid, String destination, String description, String time) {
this.starting_location = starting_location;
this.user_uid = user_uid;
this.destination = destination;
this.description = description;
this.time = time;
}
public Posts() {
}
public String getStarting_location() {
return starting_location;
}
public void setStarting_location(String startingLocation) {
this.starting_location = startingLocation;
}
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getUser_uid() {
return user_uid;
}
public void setUser_uid(String user_uid) {
this.user_uid = user_uid;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
}
最佳答案
您收到字符串并尝试将其解释为 Posts 对象。
尝试将接收到的数据存储在 String 中,并使用 Gson 从该 json 创建 Posts 对象。
关于java - FirebaseRecyclerAdapter DatabaseException : Can't convert object of type java. lang.String 输入帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57458972/
我正在尝试将一些数据插入sqflite表,但是执行插入查询时出现错误 await db.execute( 'CREATE TABLE $catrgoryTable($category_id
我尝试在 iPhone 7 上运行 flutter 应用程序,但收到一条错误消息。在我的 Android 手机以及 iPhone XR 模拟器上运行该应用程序效果很好。我还尝试在 iPad 上测试该应
我在运行生产环境时遇到以下异常。但在本地工作正常。 ing bean with name 'jobLauncher' defined in class path resource [config/sp
当我开始 Activity 时,它显示错误: Class com.rcpl.agni.Artist does not define a no-argument constructor.If you a
我未能成功捕获引发数据库异常的 sqflite SQL 错误。注意:这是一个 Future 和 async。 示例代码 Future getData() async { Directory docum
我是 Liquibase 和 JHipster 的新手,在使用 maven 插件生成差异时遇到了一些问题。 运行 mvn liquibase:diff -e -X 时出现以下错误 我的 pom 的相关
我正在尝试从 Firebase 实时数据库检索数据,但遇到了此问题。 我怀疑由于 DatabaseReference 中的路径而导致此错误。我尝试了不同的路径,但似乎都不起作用。 这是我的数据库(生成
我已经关注了一些具有相同上下文的问题,但我仍然没有找到理解或发现此错误的方法。我正在尝试将数据发送到我的 Firebase 实时数据库。付款的总费用,在我的购物车中列出和用户名,但我仍然收到此错误。
我正在尝试从 json 对象中插入数据,以下代码是关于我使用的表的代码 我这样定义数据库助手类: class DatabaseHelper { static DatabaseHelper _d
当我尝试检索数据库中的数据并将其显示在上面时,我不断收到错误 com.google.firebase.database.DatabaseException: 无法将 java.lang.Long 类型
当我尝试注册 MySQL 服务器时,我在弹出窗口中收到以下错误 Unable to connect to the MySQL server: org.netbeans.api.db.explorer.
我正在尝试获取值名称和电话作为名称=“名称”,电话=“123456”。我该如何解决它? 我的数据库结构:用户/驱动程序(名称=“名称”,电话=“123456”) 我的骑手类别: public clas
此问题/错误的根本原因是什么?如何解决?我的数据模型结构不正确吗?或者我做错了查询? //添加新评论 String comment = medit.getText().toString(); Comm
我查看了其他一些类似问题的答案,但不明白为什么我的答案不起作用。 我正在尝试让我的应用程序从 Firebase 读取命令并移动无人机。 firebase 中的命令来自一个单独的软件。该应用程序基于 P
我正在尝试获取存储在 Firebase 数据库中的信息并以列表的形式显示它。信息被正确提取,调试器显示它存在于变量中。但是在检查它们并设置 TextView 之后,它会抛出异常: 错误日志: com.
我的问题 08-10 04:23:28.820 21501-21501/my.org.medicare.medicareapp E/AndroidRuntime: FATAL EXCEPT
我想在 Firebase 数据库的 RecyclerView 中显示登录用户详细信息,但我遇到了以下错误: com.google.firebase.database.DatabaseException
我正在尝试使用以下代码保留自定义对象: DatabaseReference databaseReference = FirebaseDatabase.getInstance().getReferenc
下面是为 XMLManager 创建实例的代码段, EnvironmentConfig config = new EnvironmentConfig(); config.setErro
database structure image 我收到此错误说 com.google.firebase.database.DatabaseException: Expected a Map whil
我是一名优秀的程序员,十分优秀!