AndroidドロップダウンPtrFrame Layoutの使用例コードを更新します。


1.紹介:
  • は、すべてのコントロールを含むことができます。ListView、GridView、ScrrollView、Frame Layout、さらにはTextView。
  • カスタムリフレッシュヘッド(これは非常に実用的です)
  • 簡単で便利です。
    足りないのはアップロードをサポートしないことです。
    2.使用
    まず依存項目を追加します。
    
    compile 'in.srain.cube:ultra-ptr:1.0.11'
    Xmlに使用する
    
    <in.srain.cube.views.ptr.PtrFrameLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:tools="http://schemas.android.com/tools"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/food_refreshLayout"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     app:ptr_resistance="1.7"       //         ,         
     app:ptr_ratio_of_header_height_to_refresh="1.2"  //          ,          
     app:ptr_duration_to_close="200"        //:         
     app:ptr_duration_to_close_header="300"  //     ,      ,          
     app:ptr_keep_header_when_refresh="true"  //             
     app:ptr_pull_to_fresh="false">    //           ,       false
    
     <ScrollView
       android:layout_width="match_parent"
       android:layout_height="match_parent"
      >
      </ScrollView>
    
    </in.srain.cube.views.ptr.PtrFrameLayout>
    
    
    コードに使う
    コードの中で使うのはとても簡単で、簡単でいくつかの部品ができます。
    1.コントロールを見つけて、レイアウトの更新を追加します。
    
    mFoodRefreshLayout = (PtrFrameLayout) findViewById(R.id.food_refreshLayout);
    //               ,           new PtrDefaultHandler(); 
    PtrClassicHeader header = new PtrClassicHeader(this); 
    //      
    mFoodRefreshLayout.addPtrUIHandler(header);
    
    
    2.ヘッドレイアウトを追加するだけでなく、コントロールに設定する必要があります。特に重要です。そうでないと表示されません。
    
    mFoodRefreshLayout.setHeaderView(header); //       
    
    
    3.リフレッシュコントロールの設定のためのプルダウン傍受
    
    mFoodRefreshLayout.setPtrHandler(new PtrHandler() {
     @Override
     public void onRefreshBegin(PtrFrameLayout frame) {
      //               
      //       
       mFoodRefreshLayout.refreshComplete();
     }
    
     @Override
     public boolean checkCanDoRefresh(PtrFrameLayout frame, View content, View header) {
       //     ,         
       return PtrDefaultHandler.checkContentCanBePulledDown(frame, content, header);
     }
    });
    
    
    3.カスタム要求ヘッダ
    上では基本的な使用について紹介していますが、ドロップダウンを使ってリフレッシュするにはカスタムレイアウトが必要です。実は簡単です。上のコードにリフレッシュヘッドを追加した時に、カスタムヘッドを作成すればいいです。以下、カスタムヘッドのいくつかの方法を簡単に紹介します。
    
    public class PtrClassicHeader extends FrameLayout implements PtrUIHandler{ //    
      private ImageView mPush;
      //       
      public PtrClassicHeader(Context context) {
        super(context);
        initView();  
      }
      public PtrClassicHeader(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView();
      }
      public PtrClassicHeader(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initView();
      }
    
      //          
      private void initView() {
      //            
      View header =  LayoutInflater.from(getContext()).inflate(R.layout.item_push_header_layout, this);
      //         
        mPush = (ImageView) header.findViewById(R.id.header_iv);
      }
    
      //      ,       
      public void initAnim(){
        ObjectAnimator anim = ObjectAnimator.ofFloat(mPush, "rotation", 0f, 180f);
        anim.setDuration(500);
        anim.start();
    
      }
      //     
      @Override
      public void onUIReset(PtrFrameLayout frame) {
        //                     
      }
    
      //          
      @Override
      public void onUIRefreshPrepare(PtrFrameLayout frame) {
          initAnim(); //          
      }
    
      //       
      @Override
      public void onUIRefreshBegin(PtrFrameLayout frame) {
          //                    
          //         
        if (frame.isPullToRefresh()) {
          mTitleTextView.setText("    ");
        } else {
          mTitleTextView.setText("    ");
        }
      }
    
      //       ,       
      @Override
      public void onUIRefreshComplete(PtrFrameLayout frame) {
        //                    
         mTitleTextView.setText("   ...");
        animationDrawable.stop(); //    
        animationDrawable.start();
      }
    
      //    
      @Override
      public void onUIPositionChange(PtrFrameLayout frame, boolean isUnderTouch, byte status, PtrIndicator ptrIndicator) {
        //               ,            
        //    :         
        final int mOffsetToRefresh = frame.getOffsetToRefresh();
        final int currentPos = ptrIndicator.getCurrentPosY(); //        
        final int lastPos = ptrIndicator.getLastPosY();   //       
        //              
        if (currentPos < mOffsetToRefresh && lastPos >= mOffsetToRefresh) {
          if (isUnderTouch && status == PtrFrameLayout.PTR_STATUS_PREPARE) {
            crossRotateLineFromBottomUnderTouch(frame); //    
          }
        } else if (currentPos > mOffsetToRefresh && lastPos <= mOffsetToRefresh) {
          if (isUnderTouch && status == PtrFrameLayout.PTR_STATUS_PREPARE) {
            crossRotateLineFromTopUnderTouch(frame); //    
          }
        }
      }
      //          
      private void crossRotateLineFromTopUnderTouch(PtrFrameLayout frame) {
        if (!frame.isPullToRefresh()) {
          mTitleTextView.setText("    ");
        }
      }
      //      
      private void crossRotateLineFromBottomUnderTouch(PtrFrameLayout frame) {
        if (frame.isPullToRefresh()) {
          mTitleTextView.setText("    ");
        } else {
          mTitleTextView.setText("    ");
        }
      }
      }
    }
    
    
    4.衝突を解決する
    Viewer Pagerの滑り衝突:直接呼び出し:disableWhen Horizontalmove()
    分からないことがあったら、調べてください。https://github.com/liaohuqiu/android-Ultra-Pull-To-Refresh/blob/master/README-cn.md
    以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。