Search in sources :

Example 11 with PtrFrameLayout

use of in.srain.cube.views.ptr.PtrFrameLayout in project UltimateRecyclerView by cymcsg.

the class PullToRefreshActivity method refreshingString.

void refreshingString() {
    storeHouseHeader = new StoreHouseHeader(this);
    //   header.setPadding(0, 15, 0, 0);
    storeHouseHeader.initWithString("XCode Big Air");
    //  header.initWithStringArray(R.array.akta);
    ultimateRecyclerView.mPtrFrameLayout.removePtrUIHandler(materialHeader);
    ultimateRecyclerView.mPtrFrameLayout.setHeaderView(storeHouseHeader);
    ultimateRecyclerView.mPtrFrameLayout.addPtrUIHandler(storeHouseHeader);
    ultimateRecyclerView.mPtrFrameLayout.autoRefresh(false);
    ultimateRecyclerView.mPtrFrameLayout.setPtrHandler(new PtrHandler() {

        @Override
        public boolean checkCanDoRefresh(PtrFrameLayout ptrFrameLayout, View view, View view2) {
            boolean canbePullDown = PtrDefaultHandler.checkContentCanBePulledDown(ptrFrameLayout, view, view2);
            return canbePullDown;
        }

        @Override
        public void onRefreshBegin(PtrFrameLayout ptrFrameLayout) {
            ptrFrameLayout.postDelayed(new Runnable() {

                @Override
                public void run() {
                    onFireRefresh();
                }
            }, 1800);
        }
    });
}
Also used : PtrHandler(in.srain.cube.views.ptr.PtrHandler) PtrFrameLayout(in.srain.cube.views.ptr.PtrFrameLayout) StoreHouseHeader(in.srain.cube.views.ptr.header.StoreHouseHeader) UltimateRecyclerView(com.marshalchen.ultimaterecyclerview.UltimateRecyclerView) View(android.view.View)

Example 12 with PtrFrameLayout

use of in.srain.cube.views.ptr.PtrFrameLayout 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);
        }
    });
}
Also used : PtrUIHandler(in.srain.cube.views.ptr.PtrUIHandler) PtrFrameLayout(in.srain.cube.views.ptr.PtrFrameLayout) PtrHandler(in.srain.cube.views.ptr.PtrHandler) StoreHouseHeader(in.srain.cube.views.ptr.header.StoreHouseHeader) PtrIndicator(in.srain.cube.views.ptr.indicator.PtrIndicator) UltimateRecyclerView(com.marshalchen.ultimaterecyclerview.UltimateRecyclerView) View(android.view.View)

Example 13 with PtrFrameLayout

use of in.srain.cube.views.ptr.PtrFrameLayout in project android-Ultra-Pull-To-Refresh by liaohuqiu.

the class WithWebView method createView.

@Override
public View createView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    setHeaderTitle(R.string.ptr_demo_block_web_view);
    final View contentView = inflater.inflate(R.layout.fragment_classic_header_with_webview, null);
    mWebView = (WebView) contentView.findViewById(R.id.rotate_header_web_view);
    mWebView.setWebViewClient(new WebViewClient() {

        @Override
        public void onPageFinished(WebView view, String url) {
            mPtrFrame.refreshComplete();
        }
    });
    mPtrFrame = (PtrClassicFrameLayout) contentView.findViewById(R.id.rotate_header_web_view_frame);
    mPtrFrame.setLastUpdateTimeRelateObject(this);
    mPtrFrame.setPtrHandler(new PtrHandler() {

        @Override
        public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
            return PtrDefaultHandler.checkContentCanBePulledDown(frame, mWebView, header);
        }

        @Override
        public void onRefreshBegin(PtrFrameLayout frame) {
            updateData();
        }
    });
    // the following are default settings
    mPtrFrame.setResistance(1.7f);
    mPtrFrame.setRatioOfHeaderHeightToRefresh(1.2f);
    mPtrFrame.setDurationToClose(200);
    mPtrFrame.setDurationToCloseHeader(1000);
    // default is false
    mPtrFrame.setPullToRefresh(false);
    // default is true
    mPtrFrame.setKeepHeaderWhenRefresh(true);
    mPtrFrame.postDelayed(new Runnable() {

        @Override
        public void run() {
            mPtrFrame.autoRefresh();
        }
    }, 100);
    return contentView;
}
Also used : PtrHandler(in.srain.cube.views.ptr.PtrHandler) PtrFrameLayout(in.srain.cube.views.ptr.PtrFrameLayout) WebView(android.webkit.WebView) View(android.view.View) WebView(android.webkit.WebView) WebViewClient(android.webkit.WebViewClient)

Example 14 with PtrFrameLayout

use of in.srain.cube.views.ptr.PtrFrameLayout 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;
}
Also used : PtrFrameLayout(in.srain.cube.views.ptr.PtrFrameLayout) PtrUIHandler(in.srain.cube.views.ptr.PtrUIHandler) PtrHandler(in.srain.cube.views.ptr.PtrHandler) CubeImageView(in.srain.cube.image.CubeImageView) View(android.view.View) StoreHouseHeader(in.srain.cube.views.ptr.header.StoreHouseHeader) CubeImageView(in.srain.cube.image.CubeImageView) PtrIndicator(in.srain.cube.views.ptr.indicator.PtrIndicator) ImageLoader(in.srain.cube.image.ImageLoader)

Example 15 with PtrFrameLayout

use of in.srain.cube.views.ptr.PtrFrameLayout in project android-Ultra-Pull-To-Refresh by liaohuqiu.

the class PtrDemoHomeFragment method createView.

@Override
protected View createView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = super.createView(inflater, container, savedInstanceState);
    view.setBackgroundColor(getResources().getColor(R.color.cube_mints_333333));
    final PtrFrameLayout ptrFrameLayout = (PtrFrameLayout) view.findViewById(R.id.fragment_ptr_home_ptr_frame);
    StoreHouseHeader header = new StoreHouseHeader(getContext());
    header.setPadding(0, LocalDisplay.dp2px(20), 0, LocalDisplay.dp2px(20));
    header.initWithString("Ultra PTR");
    ptrFrameLayout.setDurationToCloseHeader(1500);
    ptrFrameLayout.setHeaderView(header);
    ptrFrameLayout.addPtrUIHandler(header);
    ptrFrameLayout.setPtrHandler(new PtrHandler() {

        @Override
        public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
            return PtrDefaultHandler.checkContentCanBePulledDown(frame, content, header);
        }

        @Override
        public void onRefreshBegin(PtrFrameLayout frame) {
            ptrFrameLayout.postDelayed(new Runnable() {

                @Override
                public void run() {
                    ptrFrameLayout.refreshComplete();
                }
            }, 1500);
        }
    });
    return view;
}
Also used : PtrFrameLayout(in.srain.cube.views.ptr.PtrFrameLayout) PtrHandler(in.srain.cube.views.ptr.PtrHandler) StoreHouseHeader(in.srain.cube.views.ptr.header.StoreHouseHeader) View(android.view.View)

Aggregations

View (android.view.View)20 PtrFrameLayout (in.srain.cube.views.ptr.PtrFrameLayout)20 PtrHandler (in.srain.cube.views.ptr.PtrHandler)17 CubeImageView (in.srain.cube.image.CubeImageView)9 StoreHouseHeader (in.srain.cube.views.ptr.header.StoreHouseHeader)7 ImageLoader (in.srain.cube.image.ImageLoader)5 AdapterView (android.widget.AdapterView)4 ListView (android.widget.ListView)3 UltimateRecyclerView (com.marshalchen.ultimaterecyclerview.UltimateRecyclerView)3 JsonData (in.srain.cube.request.JsonData)3 PtrDefaultHandler (in.srain.cube.views.ptr.PtrDefaultHandler)3 PtrUIHandler (in.srain.cube.views.ptr.PtrUIHandler)3 MaterialStyleFragment (in.srain.cube.views.ptr.demo.ui.MaterialStyleFragment)3 PtrIndicator (in.srain.cube.views.ptr.indicator.PtrIndicator)3 BitmapDrawable (android.graphics.drawable.BitmapDrawable)2 ColorDrawable (android.graphics.drawable.ColorDrawable)2 Drawable (android.graphics.drawable.Drawable)2 TransitionDrawable (android.graphics.drawable.TransitionDrawable)2 ImageView (android.widget.ImageView)2 TextView (android.widget.TextView)2