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