Date and Time formatting Cheat Sheet
SymbolMeaningType
Type
GEraText
GG->AD
YYearNumber
yy -> 03, yyyy -> 2003
MMonthText or Number
M -> 7, MM -> 07, MMM -> Jul , MMMM -> July
dDay in monthNumber
d -> 3 , dd -> 03
hHour...
Monday, August 22, 2016
Monday, June 20, 2016
Android - Load more custom ListView with footer

Overview:- If you are loading data from a web server and the list is huge, then the practical solution would be to load a certain amount and if the user scrolls to the end of the list, load some more and keep going until you load the full list.
I have handled the...