本文整理汇总了Java中com.handmark.pulltorefresh.library.internal.LoadingLayout类的典型用法代码示例。如果您正苦于以下问题:Java LoadingLayout类的具体用法?Java LoadingLayout怎么用?Java LoadingLayout使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
LoadingLayout类属于com.handmark.pulltorefresh.library.internal包,在下文中一共展示了LoadingLayout类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createLoadingLayoutClazz
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
/**
* Create a {@code LoadingLayout} instance matched by <b>{@code clazz} token</b>
* @param layoutCode Loading layout code, which must be defined in pulltorefresh.xml
* @param context
* @param mode
* @return {@code LoadingLayout} instance if the class matched by {@code layoutCode} exists, or {@code RotateLoadingLayout} instance if not
*/
@SuppressWarnings("unchecked")
public static Class<? extends LoadingLayout> createLoadingLayoutClazz(
String clazzName) {
Class<? extends LoadingLayout> loadingLayoutClazz = null;
if ( clazzName == null ) {
loadingLayoutClazz = DefaultLoadingLayoutFactory.createLoadingLayoutClazz(clazzName);
return loadingLayoutClazz;
}
try {
loadingLayoutClazz = (Class<LoadingLayout>) Class.forName(clazzName);
} catch (ClassNotFoundException e) {
Log.e(LOG_TAG,"The loading layout you have chosen class has not been found.", e);
loadingLayoutClazz = DefaultLoadingLayoutFactory.createLoadingLayoutClazz(clazzName);
}
return loadingLayoutClazz;
}
示例2: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
/**
* Create a {@code LoadingLayout} instance matched by <b>{@code clazz} token</b>
* @param layoutCode Loading layout code, which must be defined in pulltorefresh.xml
* @param context
* @param mode
* @return {@code LoadingLayout} instance if the class matched by {@code layoutCode} exists, or {@code RotateLoadingLayout} instance if not
*/
public static LoadingLayout createLoadingLayout(
Class<? extends LoadingLayout> clazz, Context context, Mode mode,
Orientation orientation, TypedArray attrs) {
LoadingLayout layout = null;
// Prevent NullPointerException
if ( clazz == null ) {
Log.i(LOG_TAG, "The Class token of the Loading Layout is missing. Default Loading Layout will be used.");
clazz = DefaultLoadingLayoutFactory.createLoadingLayoutClazz("");
}
layout = tryNewInstance(clazz, context, mode, orientation, attrs);
// If trying to create new instance has failed,
if (layout == null) {
layout = DefaultLoadingLayoutFactory.createLoadingLayout(clazz, context, mode, orientation, attrs);
}
layout.setVisibility(View.INVISIBLE);
return layout;
}
示例3: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
LoadingLayout createLoadingLayout(Context context, Mode mode, Orientation scrollDirection, TypedArray attrs) {
switch (this) {
case ROTATE:
default:
return new RotateLoadingLayout(context, mode, scrollDirection, attrs);
case FLIP:
return new FlipLoadingLayout(context, mode, scrollDirection, attrs);
}
}
示例4: PullToRefreshWebView
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
public PullToRefreshWebView(Context context, Mode mode, Class<? extends LoadingLayout> loadingLayoutClazz) {
super(context, mode, loadingLayoutClazz);
/**
* Added so that by default, Pull-to-Refresh refreshes the page
*/
setOnRefreshListener(defaultOnRefreshListener);
mRefreshableView.setWebChromeClient(defaultWebChromeClient);
}
示例5: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
LoadingLayout createLoadingLayout(Context context, Mode mode, Orientation
scrollDirection, TypedArray attrs) {
switch (this) {
case FLIP:
return new FlipLoadingLayout(context, mode, scrollDirection, attrs);
default:
return new RotateLoadingLayout(context, mode, scrollDirection, attrs);
}
}
示例6: createLoadingLayoutFooter
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
LoadingLayout createLoadingLayoutFooter(Context context, Mode mode,
Orientation scrollDirection, TypedArray attrs) {
switch (this) {
case ROTATE:
default:
return new RotateLoadingLayoutFooter(context, mode,
scrollDirection, attrs);
case FLIP:
return new FlipLoadingLayoutFooter(context, mode,
scrollDirection, attrs);
}
}
示例7: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
protected LoadingLayout createLoadingLayout(Context context, Mode mode, TypedArray attrs) {
// 触发下拉刷新操作
if(mode == Mode.PULL_FROM_START){
LoadingLayout layout =
new TweenAnimLoadingLayout(context,mode,
getPullToRefreshScrollDirection(),attrs);
layout.setVisibility(View.INVISIBLE);
return layout;
}else{
return super.createLoadingLayout(context, mode, attrs);
}
}
示例8: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
LoadingLayout createLoadingLayout(Context context, Mode mode, Orientation scrollDirection, TypedArray attrs) {
switch (this) {
case ROTATE:
default:
return new RotateLoadingLayout(context, mode, scrollDirection, attrs);
case FLIP:
return new FlipLoadingLayout(context, mode, scrollDirection, attrs);
}
}
示例9: createLoadingLayout
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
protected LoadingLayout createLoadingLayout(Context context, Mode mode,
TypedArray attrs) {
LoadingLayout layout = mLoadingAnimationStyle.createLoadingLayout(
context, mode, getPullToRefreshScrollDirection(), attrs);
layout.setVisibility(View.INVISIBLE);
return layout;
}
示例10: LoadingLayoutProxy
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
LoadingLayoutProxy() {
mLoadingLayouts = new HashSet<LoadingLayout>();
}
示例11: setLastUpdatedLabel
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
public void setLastUpdatedLabel(CharSequence label) {
for (LoadingLayout layout : mLoadingLayouts) {
layout.setLastUpdatedLabel(label);
}
}
示例12: setLoadingDrawable
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
public void setLoadingDrawable(Drawable drawable) {
for (LoadingLayout layout : mLoadingLayouts) {
layout.setLoadingDrawable(drawable);
}
}
示例13: setRefreshingLabel
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
public void setRefreshingLabel(CharSequence refreshingLabel) {
for (LoadingLayout layout : mLoadingLayouts) {
layout.setRefreshingLabel(refreshingLabel);
}
}
示例14: setPullLabel
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
public void setPullLabel(CharSequence label) {
for (LoadingLayout layout : mLoadingLayouts) {
layout.setPullLabel(label);
}
}
示例15: setReleaseLabel
import com.handmark.pulltorefresh.library.internal.LoadingLayout; //导入依赖的package包/类
@Override
public void setReleaseLabel(CharSequence label) {
for (LoadingLayout layout : mLoadingLayouts) {
layout.setReleaseLabel(label);
}
}