Skip to content

Instantly share code, notes, and snippets.

View ramakrishnajoshi's full-sized avatar
🎯
Focusing

Ramakrishna Joshi ramakrishnajoshi

🎯
Focusing
  • Bangalore, India
  • 12:27 (UTC +05:30)
View GitHub Profile
@ramakrishnajoshi
ramakrishnajoshi / ParcelableInAndroid.java
Created July 9, 2018 09:44
Parcelable Interface is used to send data objects from one activity to another activity.
public class StudentDataClass implements Parcelable {
public String studentId;
public String studentName;
public StudentDataClass(String studentId, String studentName) {
this.studentId = studentId;
this.studentName = studentName;
}