Advertisement
vmeansdev

FragmentInitRecomend

Sep 25th, 2019
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. class WPFragment {
  2.  
  3.     ...
  4.  
  5.     public static WPFragment newInstance() {
  6.         return new WPFragment();
  7.     }
  8.  
  9.     ...
  10. }
  11.  
  12.  
  13. class MainActivity {
  14.  
  15.     ...
  16.  
  17.     if (fragment == null) {
  18.         fragment = WPFragment().newInstance();
  19.         ...
  20.     }
  21.  
  22.     ...
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement