|
|
@@ -65,15 +65,16 @@ public abstract class FragmentBase<P extends Presenter> extends Fragment impleme
|
|
|
public final View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
Log.e("APP# FragmentBase | onCreateView", "| >>>>>>>>>>>> " + this.getClass().getSimpleName());
|
|
|
|
|
|
- defineActionBar();
|
|
|
- defineActionButton();
|
|
|
-
|
|
|
return onAfterCreateView(inflater, container, savedInstanceState);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public final void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
|
|
// Log.e("APP# FragmentBase | onViewCreated", "| >>>>>>>>>>>> " + this.getClass().getSimpleName());
|
|
|
+
|
|
|
+ defineActionBar();
|
|
|
+ defineActionButton();
|
|
|
+
|
|
|
super.onViewCreated(view, savedInstanceState);
|
|
|
}
|
|
|
|