• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. V

    How do i get string list of username and fullname from firebase?

    In java class i used some random username and fullname for testing but now i want to get the list of username and full name of user who are child of current user in Mates node in firebase. public class User { public String fullname; public String username; public User() { }...
  2. V

    currently i have been using these types of codes and i am using setter and getter method from module

    private DatabaseReference PostRef; query sortPost=PostRef; enter code hereFirebaseRecyclerOptions<Post> options=new FirebaseRecyclerOptions.Builder<Post>().setQuery(sortPost,Post.class).build(); @override protected void onBindViewHolder(@NonNull PostsViewHolder...