조각에는 실제로 빈 생성자가 필요합니까? 나는이 Fragment여러 인수를 취하는 생성자. 내 앱은 개발 중에는 잘 작동했지만 프로덕션 환경에서는 때때로 사용자가 다음과 같은 충돌을 보게됩니다. android.support.v4.app.Fragment$InstantiationException: Unable to instantiate fragment make sure class name exists, is public, and has an empty constructor that is public 이 오류 메시지에서 알 수 있듯이 빈 생성자를 만들 수는 있지만 이후에는 별도의 메서드를 호출하여을 설정해야합니다 Fragment. 이 충돌이 왜 가끔 발생하는지 궁금합니다. 어쩌면 내가 ViewPager잘못 사..