validFragment

    Why use fragment static constructor?

    http://stackoverflow.com/questions/14654766/creating-a-fragment-constructor-vs-newinstancehttp://stackoverflow.com/questions/12062946/why-do-i-want-to-avoid-non-default-constructors-in-fragments 대부분의 구글 예제 들이 static을 통한 newInstance()를 사용했다. 이 것은 'Factory method pattern' 과 관련이 있다. http://en.wikipedia.org/wiki/Factory_method_pattern static 을 사용하지 않으면, 안드로이드 Lint 가 발생한다. @SuppressLint("ValidFragmen..