Skip to main content

Posts

Featured

Solution for shuffling checked positions while scrolling RecyclerView with CheckBox

All u need to do is follow these in model class 1. implement ur model class with Serialize interface 2. include a boolean variable import java.io.Serializable ; public class Student implements Serializable { /** * */ private static final long serialVersionUID = 1L ; private String name; private String emailId; private boolean isSelected; public Student () { } public Student (String name, String emailId) { this . name = name; this . emailId = emailId; } public Student (String name, String emailId, boolean isSelected) { this . name = name; this . emailId = emailId; this . isSelected = isSelected; } public String getName () { return name; } public void setName (String name) { this . name = name; } public String getEmailId () { return emailId; } public void setEmailId (String emailId) { this . emailId = emailId; } public boolean isSelected () { return isSelected; } public void setSe

Latest posts

Android Webview accessing the camera and gallery

Pdf Creation Using Android Native API (Above Kitkat OS version)

Solution for the check boxes shuffling its positions while scrolling the list view

How to get GCM Messages from older projects created in google code developer console

Change text of edit text on button click inside list custom adapter

Registering OAuth clients for Google Sign-In | Android Developers Blog

Android Design Support Library | Android Developers Blog

Android Getting start with Volley Libaray

Create Dynamic Subdomains using PHP and Htaccess

SECURING PHP USER AUTHENTICATION, LOGIN, AND SESSIONS