本文整理汇总了Java中com.hannesdorfmann.mosby.mvp.lce.LceAnimator类的典型用法代码示例。如果您正苦于以下问题:Java LceAnimator类的具体用法?Java LceAnimator怎么用?Java LceAnimator使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
LceAnimator类属于com.hannesdorfmann.mosby.mvp.lce包,在下文中一共展示了LceAnimator类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: animateLoadingViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Override this method if you want to provide your own animation for showing the loading view
*/
protected void animateLoadingViewIn() {
LceAnimator.showLoading(loadingView, contentView, errorView);
}
示例2: animateContentViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Called to animate from loading view to content view
*/
protected void animateContentViewIn() {
LceAnimator.showContent(loadingView, contentView, errorView);
}
示例3: animateErrorViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Animates the error view in (instead of displaying content view / loading view)
*/
protected void animateErrorViewIn() {
LceAnimator.showErrorView(loadingView, contentView, errorView);
}
示例4: animateLoadingViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Override this method if you want to provide your own animation for showing the loading view
*/
protected void animateLoadingViewIn()
{
LceAnimator.showLoading(loadingView, contentView, errorView);
}
示例5: animateContentViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Called to animate from loading view to content view
*/
protected void animateContentViewIn()
{
LceAnimator.showContent(loadingView, contentView, errorView);
}
示例6: animateErrorViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Animates the error view in (instead of displaying content view / loading view)
*/
protected void animateErrorViewIn()
{
LceAnimator.showErrorView(loadingView, contentView, errorView);
}
示例7: animateLoadingViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Override this method if you want to provide your own animation for showing the loading view
*/
protected void animateLoadingViewIn() {
LceAnimator.showLoading(loadingView, contentView, errorView);
}
示例8: animateContentViewIn
import com.hannesdorfmann.mosby.mvp.lce.LceAnimator; //导入依赖的package包/类
/**
* Called to animate from loading view to content view
*/
protected void animateContentViewIn() {
LceAnimator.showContent(loadingView, contentView, errorView);
}