Lines Matching refs:Ui
22 public abstract class Presenter<U extends Ui> {
27 * Called after the UI view has been created. That is when fragment.onViewCreated() is called.
29 * @param ui The Ui implementation that is now ready to be used.
31 public void onUiReady(U ui) {
32 mUi = ui;
36 * Called when the UI view is destroyed in Fragment.onDestroyView().
38 public final void onUiDestroy(U ui) {
39 onUiUnready(ui);
45 * destroyed but before ui is set to null.
47 public void onUiUnready(U ui) {