All Questions
2 questions
5
votes
4
answers
2k
views
Proper way to name a class which has just methods and not fields
GOAL: naming a class which has the responsibility to save data in Android database.
The class structure is like this
ClassName {
public void saveSync(...){
/* implementation*/
}
public ...
7
votes
2
answers
5k
views
Should I use mMember and sStatic naming convention in Android? [closed]
Android source code and many Android open-source apps and libs use m prefix for member fields and s prefix for static member fields:
private static boolean sStarted;
private long mTimestamp;
I ...