Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class FooFragment extends BarFragment {
- public static FooFragment newInstance() {
- return new FooFragment();
- }
- @Override
- protected void initViews() {
- viewWhichShouldNotBeCommon.setVisibility(View.GONE);
- super.initViews();
- presenter.setFlag(true);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement