当前位置: 首页>>代码示例>>Java>>正文


Java SlideInRightAnimator类代码示例

本文整理汇总了Java中jp.wasabeef.recyclerview.animators.SlideInRightAnimator的典型用法代码示例。如果您正苦于以下问题:Java SlideInRightAnimator类的具体用法?Java SlideInRightAnimator怎么用?Java SlideInRightAnimator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SlideInRightAnimator类属于jp.wasabeef.recyclerview.animators包,在下文中一共展示了SlideInRightAnimator类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onViewCreated

import jp.wasabeef.recyclerview.animators.SlideInRightAnimator; //导入依赖的package包/类
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    hideSoftKeypad();
    swipeRefreshLayout.setOnRefreshListener(this);

    ToolbarHelperKt.initCenteredToolbar(this, R.string.units_lessons_title, true);

    unitsRecyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
    unitList = new ArrayList<>();
    lessonList = new ArrayList<>();
    progressMap = new HashMap<>();
    adapter = new UnitAdapter(section,
            downloadingPresenter,
            unitList,
            lessonList,
            progressMap,
            (AppCompatActivity) getActivity(),
            lessonIdToLoadingStateMap,
            this,
            downloadingInteractionPresenter);

    unitsRecyclerView.setAdapter(adapter);
    unitsRecyclerView.setItemAnimator(new SlideInRightAnimator());
    unitsRecyclerView.getItemAnimator().setRemoveDuration(ANIMATION_DURATION);
    unitsRecyclerView.getItemAnimator().setAddDuration(ANIMATION_DURATION);
    unitsRecyclerView.getItemAnimator().setMoveDuration(ANIMATION_DURATION);


    ProgressHelper.activate(progressBar);

    storeStateManager.addLessonCallback(this);
    downloadingPresenter.attachView(this);
    unitsPresenter.attachView(this);
    unitsLearningProgressPresenter.attachView(this);
    getLocalProgressManager().subscribe(unitsLearningProgressPresenter);
    routingClient.subscribe(this);
    unitsPresenter.showUnits(section, false);
}
 
开发者ID:StepicOrg,项目名称:stepik-android,代码行数:40,代码来源:UnitsFragment.java

示例2: onViewCreated

import jp.wasabeef.recyclerview.animators.SlideInRightAnimator; //导入依赖的package包/类
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    nullifyActivityBackground();
    setHasOptionsMenu(true);
    initToolbar();

    needAuthRootView.setVisibility(View.GONE);
    authUserButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            getScreenManager().showLaunchScreen(getActivity());
        }
    });
    downloadAdapter = new DownloadsAdapter(cachedVideoList, stepIdToLesson, getActivity(), this, downloadingWithProgressList, cachedStepsSet, this);
    downloadsView.setAdapter(downloadAdapter);

    downloadsView.setLayoutManager(new LinearLayoutManager(getContext()));
    downloadsView.setItemAnimator(new SlideInRightAnimator());
    downloadsView.getItemAnimator().setRemoveDuration(ANIMATION_DURATION);
    downloadsView.getItemAnimator().setAddDuration(ANIMATION_DURATION);
    downloadsView.getItemAnimator().setMoveDuration(ANIMATION_DURATION);

    if (isLoaded) {
        checkForEmpty();
    } else {
        emptyDownloadView.setVisibility(View.GONE);
        ProgressHelper.activate(progressBar);
    }

    loadingProgressDialog = new LoadingProgressDialog(getContext());
    downloadsListenerClient.subscribe(this);
    videoMovedListenerClient.subscribe(this);
}
 
开发者ID:StepicOrg,项目名称:stepik-android,代码行数:35,代码来源:DownloadsFragment.java

示例3: onViewCreated

import jp.wasabeef.recyclerview.animators.SlideInRightAnimator; //导入依赖的package包/类
@Override
public void onViewCreated(View view, @android.support.annotation.Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    imageViewTarget = new GlideDrawableImageViewTarget(courseIcon);
    hideSoftKeypad();
    firstLoad = true;

    swipeRefreshLayout.setOnRefreshListener(this);

    sectionsRecyclerView.setVisibility(View.GONE);
    linearLayoutManager = new LinearLayoutManager(getActivity());
    sectionsRecyclerView.setLayoutManager(linearLayoutManager);
    sectionList = new ArrayList<>();
    adapter = new SectionAdapter(downloadingPresenter, sectionList, ((AppCompatActivity) getActivity()), calendarPresenter, sectionsPresenter.getProgressMap(), sectionIdToLoadingStateMap, this, downloadingInteractionPresenter);
    sectionsRecyclerView.setAdapter(adapter);

    sectionsRecyclerView.setItemAnimator(new SlideInRightAnimator());
    sectionsRecyclerView.getItemAnimator().setRemoveDuration(ANIMATION_DURATION);
    sectionsRecyclerView.getItemAnimator().setAddDuration(ANIMATION_DURATION);
    sectionsRecyclerView.getItemAnimator().setMoveDuration(ANIMATION_DURATION);
    sectionsRecyclerView.getItemAnimator().setChangeDuration(0);


    joinCourseProgressDialog = new LoadingProgressDialog(getContext());
    ProgressHelper.activate(loadOnCenterProgressBar);
    storeStateManager.addSectionCallback(this);
    localProgressManager.subscribe(this);
    droppingListenerClient.subscribe(this);
    calendarPresenter.attachView(this);
    courseFinderPresenter.attachView(this);
    courseJoinerPresenter.attachView(this);
    sectionsPresenter.attachView(this);
    invitationPresenter.attachView(this);
    downloadingPresenter.attachView(this);

    ToolbarHelperKt.initCenteredToolbar(this, R.string.syllabus_title, true);
    onNewIntent(getActivity().getIntent());
}
 
开发者ID:StepicOrg,项目名称:stepik-android,代码行数:39,代码来源:SectionsFragment.java

示例4: onCreate

import jp.wasabeef.recyclerview.animators.SlideInRightAnimator; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    showActionBar(getString(R.string.favorite_title));
    mRecyclerView.setAdapter(mAdapter);
    SlideInRightAnimator animator = new SlideInRightAnimator();
    mRecyclerView.setItemAnimator(animator);
    requestPresentRefresh();
}
 
开发者ID:MoonRune,项目名称:CuiTrip,代码行数:10,代码来源:FavoriteListActivity.java


注:本文中的jp.wasabeef.recyclerview.animators.SlideInRightAnimator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。