Skip to Main Content
Mastering Firebase for Android Development
book

Mastering Firebase for Android Development

by Ashok Kumar S
June 2018
Beginner to intermediate content levelBeginner to intermediate
394 pages
9h 2m
English
Packt Publishing
Content preview from Mastering Firebase for Android Development

Logic

The following POJO class expresses the idea and the data format that we will save in Firebase. Using the POJO class we will pass the data to the adapter:

package com.ashok.packt.realtime.database.model;/** * Created by ashok.kumar on 20/10/17. */public class Donor {    private String FullName;    private String Email;    private String City;    private String BloodGroup;    public Donor(){    }

Now within the same class lets create a constructor for passing the data to the POJO:

    public Donor(String fullName, String email, String city, String bloodGroup) {        FullName = fullName;        Email = email;        City = city;        BloodGroup = bloodGroup;    }    public String getFullName() {        return FullName;    }    public void setFullName(String fullName) {        FullName = fullName;    }    public ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning React and Firebase: Create Four Beginner-Friendly Projects Using React and Firebase

Beginning React and Firebase: Create Four Beginner-Friendly Projects Using React and Firebase

Nabendu Biswas

Publisher Resources

ISBN: 9781788624718Supplemental Content