use of in.srain.cube.views.ptr.indicator.PtrIndicator in project UltimateRecyclerView by cymcsg.
the class PullToRefreshActivity method refreshingStringArray.
// RentalsSunHeaderView rentalsSunHeaderView;
private void refreshingStringArray() {
storeHouseHeader = new StoreHouseHeader(this);
storeHouseHeader.setPadding(0, 15, 0, 0);
// using string array from resource xml file
storeHouseHeader.initWithStringArray(R.array.storehouse);
ultimateRecyclerView.mPtrFrameLayout.setDurationToCloseHeader(1500);
ultimateRecyclerView.mPtrFrameLayout.removePtrUIHandler(materialHeader);
ultimateRecyclerView.mPtrFrameLayout.setHeaderView(storeHouseHeader);
ultimateRecyclerView.mPtrFrameLayout.addPtrUIHandler(storeHouseHeader);
ultimateRecyclerView.mPtrFrameLayout.autoRefresh(false);
// change header after loaded
ultimateRecyclerView.mPtrFrameLayout.addPtrUIHandler(new PtrUIHandler() {
@Override
public void onUIReset(PtrFrameLayout frame) {
mLoadTime++;
if (mLoadTime % 2 == 0) {
storeHouseHeader.setScale(1);
storeHouseHeader.initWithStringArray(R.array.storehouse);
} else {
storeHouseHeader.setScale(0.5f);
storeHouseHeader.initWithStringArray(R.array.akta);
}
}
@Override
public void onUIRefreshPrepare(PtrFrameLayout frame) {
}
@Override
public void onUIRefreshBegin(PtrFrameLayout frame) {
}
@Override
public void onUIRefreshComplete(PtrFrameLayout frame) {
}
@Override
public void onUIPositionChange(PtrFrameLayout frame, boolean isUnderTouch, byte status, PtrIndicator ptrIndicator) {
}
});
ultimateRecyclerView.mPtrFrameLayout.setPtrHandler(new PtrHandler() {
@Override
public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
return true;
}
@Override
public void onRefreshBegin(final PtrFrameLayout frame) {
frame.postDelayed(new Runnable() {
@Override
public void run() {
// frame.refreshComplete();
// simpleRecyclerViewAdapter.insertLast("Refresh things");
// ultimateRecyclerView.scrollBy(0, -50);
linearLayoutManager.scrollToPosition(0);
ultimateRecyclerView.mPtrFrameLayout.refreshComplete();
if (mLoadTime % 2 == 0)
changeHeaderHandler.sendEmptyMessageDelayed(1, 500);
}
}, 2000);
}
});
}
use of in.srain.cube.views.ptr.indicator.PtrIndicator in project android-Ultra-Pull-To-Refresh by liaohuqiu.
the class StoreHouseUsingString method createView.
@Override
protected View createView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_storehouse_header, null);
mTitlePre = getString(R.string.ptr_demo_storehouse_header_using_string_in_title);
CubeImageView imageView = (CubeImageView) view.findViewById(R.id.store_house_ptr_image);
ImageLoader imageLoader = ImageLoaderFactory.create(getContext());
String pic = "http://img5.duitang.com/uploads/item/201406/28/20140628122218_fLQyP.thumb.jpeg";
imageView.loadImage(imageLoader, pic);
final PtrFrameLayout frame = (PtrFrameLayout) view.findViewById(R.id.store_house_ptr_frame);
// header
final StoreHouseHeader header = new StoreHouseHeader(getContext());
header.setPadding(0, LocalDisplay.dp2px(15), 0, 0);
/**
* using a string, support: A-Z 0-9 - .
* you can add more letters by {@link in.srain.cube.views.ptr.header.StoreHousePath#addChar}
*/
header.initWithString(mStringList[0]);
setHeaderTitle(mTitlePre + mStringList[0]);
// for changing string
frame.addPtrUIHandler(new PtrUIHandler() {
private int mLoadTime = 0;
@Override
public void onUIReset(PtrFrameLayout frame) {
mLoadTime++;
String string = mStringList[mLoadTime % mStringList.length];
header.initWithString(string);
}
@Override
public void onUIRefreshPrepare(PtrFrameLayout frame) {
String string = mStringList[mLoadTime % mStringList.length];
setHeaderTitle(mTitlePre + string);
}
@Override
public void onUIRefreshBegin(PtrFrameLayout frame) {
}
@Override
public void onUIRefreshComplete(PtrFrameLayout frame) {
}
@Override
public void onUIPositionChange(PtrFrameLayout frame, boolean isUnderTouch, byte status, PtrIndicator ptrIndicator) {
}
});
frame.setDurationToCloseHeader(3000);
frame.setHeaderView(header);
frame.addPtrUIHandler(header);
frame.postDelayed(new Runnable() {
@Override
public void run() {
frame.autoRefresh(false);
}
}, 100);
frame.setPtrHandler(new PtrHandler() {
@Override
public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
return true;
}
@Override
public void onRefreshBegin(final PtrFrameLayout frame) {
frame.postDelayed(new Runnable() {
@Override
public void run() {
frame.refreshComplete();
}
}, 2000);
}
});
return view;
}
use of in.srain.cube.views.ptr.indicator.PtrIndicator in project android-Ultra-Pull-To-Refresh by liaohuqiu.
the class StoreHouseUsingStringArray method createView.
@Override
protected View createView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
final View view = inflater.inflate(R.layout.fragment_storehouse_header, null);
mTitlePre = getString(R.string.ptr_demo_storehouse_header_using_string_array_in_title);
setHeaderTitle(mTitlePre + "R.array.storehouse");
// loading image
CubeImageView imageView = (CubeImageView) view.findViewById(R.id.store_house_ptr_image);
ImageLoader imageLoader = ImageLoaderFactory.create(getContext());
String pic = "http://img5.duitang.com/uploads/item/201406/28/20140628122218_fLQyP.thumb.jpeg";
imageView.loadImage(imageLoader, pic);
final PtrFrameLayout frame = (PtrFrameLayout) view.findViewById(R.id.store_house_ptr_frame);
final StoreHouseHeader header = new StoreHouseHeader(getContext());
header.setPadding(0, LocalDisplay.dp2px(15), 0, 0);
// using string array from resource xml file
header.initWithStringArray(R.array.storehouse);
frame.setDurationToCloseHeader(1500);
frame.setHeaderView(header);
frame.addPtrUIHandler(header);
frame.postDelayed(new Runnable() {
@Override
public void run() {
frame.autoRefresh(false);
}
}, 100);
// change header after loaded
frame.addPtrUIHandler(new PtrUIHandler() {
private int mLoadTime = 0;
@Override
public void onUIReset(PtrFrameLayout frame) {
mLoadTime++;
if (mLoadTime % 2 == 0) {
header.setScale(1);
header.initWithStringArray(R.array.storehouse);
} else {
header.setScale(0.5f);
header.initWithStringArray(R.array.akta);
}
}
@Override
public void onUIRefreshPrepare(PtrFrameLayout frame) {
if (mLoadTime % 2 == 0) {
setHeaderTitle(mTitlePre + "R.array.storehouse");
} else {
setHeaderTitle(mTitlePre + "R.array.akta");
}
}
@Override
public void onUIRefreshBegin(PtrFrameLayout frame) {
}
@Override
public void onUIRefreshComplete(PtrFrameLayout frame) {
}
@Override
public void onUIPositionChange(PtrFrameLayout frame, boolean isUnderTouch, byte status, PtrIndicator ptrIndicator) {
}
});
frame.setPtrHandler(new PtrHandler() {
@Override
public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
return true;
}
@Override
public void onRefreshBegin(final PtrFrameLayout frame) {
frame.postDelayed(new Runnable() {
@Override
public void run() {
frame.refreshComplete();
}
}, 2000);
}
});
return view;
}
Aggregations