Android or Java Keywords or short form

POJO  Plain Old Java Object →
Acronym for Plain Old Java Object.
POJO, or Plain Old Java Object, is a normal Java object class (that is, not a JavaBean, EntityBean etc.)  and does not serve any other special role nor does it implement any special interfaces of any of the Java frameworks. This term was coined by Martin Fowler, Rebbecca Parsons and Josh MacKenzie who believed that by creating the acronym POJO, such objects would have a "fancy name", thereby convincing people that they were worthy of use.
Related slanbg: POJI, short for plain old java interface. It is used to enforce the idea of developing an API against interfaces instead of implementations.

Gson   →
Gson is a Java library that can be used to convert Java Objects into their JSON representation. 
It can also be used to convert a JSON string to an equivalent Java object
Gson is an Open Source project, which can be found under 
https://github.com/google/gson
The webpage provides a convenient download link.

JavaLibrary-Gson/article.html


Json  = JavaScript Object Notiation  (JS + ON) →

Json (or javascript object notation) is a great way to transfer data over the web or persist data to disk. ... 
There are a couple of ways to work with json on Android. You can use the standard Java/Android libraries, Google's GSON library, or FasterXML's Jackson (Jackson) library.

Moshi  →
Moshi is a modern JSON library for Android and Java.
https://github.com/square/moshi

inflater / layoutInflater → 


GPS: →
Global Positioning System

Full form of GPS is Global Positioning System which is also known as Navstar GPS that provides geolocation and time information to a GPS receiver in all weather conditions, anywhere on or near the Earth where there is an unobstructed line of sight to four or more GPS satellites.



Buffer →



Serialization is the process of converting an object into a stream of bytes in order to store the object or transmit it to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.

Serialization typically means writing the data as a string (think: xml / json) or as raw binary (a byte[] etc). Deserialization is the reverse process; taking the raw data (from a file, from an incoming network socket, etc) and reconstructing the object model. ... That can mean converting it to a byte stream.


























মন্তব্যসমূহ

এই ব্লগটি থেকে জনপ্রিয় পোস্টগুলি

API (Application Programming Interface) .

Add Gif file in Android xml file