SplashContract.java 501 B

12345678910111213141516171819202122232425262728
  1. package com.edufound.reader.contract;
  2. import android.content.Intent;
  3. import android.widget.TextView;
  4. import com.edufound.reader.base.BaseView;
  5. public interface SplashContract {
  6. interface Model {
  7. }
  8. interface View extends BaseView {
  9. void toMainActivity();
  10. }
  11. interface Presenter {
  12. void getUserInfo(Intent intent);
  13. void initServiceText(TextView textView);
  14. void initHuaWei();
  15. void checkHuaWeiUpdate();
  16. void onDestroy();
  17. }
  18. }