Skip to content
/ Today Public

A MVP example app;Find history events happened on the same day

Notifications You must be signed in to change notification settings

hustlong/Today

Repository files navigation

Today

It is a MVP example app.

It can find history events happened on the same day.

  • demo gif

  • usage Insert these code in your activity onCreate:

mainPresenter = new MainPresenter(format.format(new Date()),this);
mainPresenter.loadData();

make your activity implements Mainview,then you can loadLastData or loadNextData:

case R.id.lastBtn:
            mainPresenter.loadLastData();
            break;
case R.id.nextBtn:
            mainPresenter.loadNextData();
            break;

About

A MVP example app;Find history events happened on the same day

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages