use of com.dev.base.mvp.view.fragment.MovieFragment in project DevRing by LJYcoder.
the class MovieActivityModule method commingMovieFragment.
@ActivityScope
@Provides
@Named("comming")
MovieFragment commingMovieFragment() {
Bundle bundle = new Bundle();
bundle.putInt("type", MovieFragment.TYPE_COMMING);
MovieFragment fragment = new MovieFragment();
fragment.setArguments(bundle);
return fragment;
}
use of com.dev.base.mvp.view.fragment.MovieFragment in project DevRing by LJYcoder.
the class MovieActivityModule method playingMovieFragment.
@ActivityScope
@Provides
@Named("playing")
MovieFragment playingMovieFragment() {
Bundle bundle = new Bundle();
bundle.putInt("type", MovieFragment.TYPE_PLAYING);
MovieFragment fragment = new MovieFragment();
fragment.setArguments(bundle);
return fragment;
}
Aggregations