Skip to content

Commit

Permalink
a little 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucklygaj committed Apr 21, 2016
1 parent 116949b commit 47bce85
Showing 1 changed file with 1 addition and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public abstract class BaseQuickAdapter<T> extends RecyclerView.Adapter<RecyclerV
/**
* Use with {@link #openLoadAnimation}
*/
<<<<<<< HEAD
public static final int SCALEIN = 1 << 2;
/**
* Use with {@link #openLoadAnimation}
Expand All @@ -63,21 +62,7 @@ public abstract class BaseQuickAdapter<T> extends RecyclerView.Adapter<RecyclerV
* Use with {@link #openLoadAnimation}
*/
public static final int SLIDEIN_RIGHT = 1 << 5;
=======
public static final int SCALEIN = 0x00000010;
/**
* Use with {@link #openLoadAnimation}
*/
public static final int SLIDEIN_BOTTOM = 0x00000011;
/**
* Use with {@link #openLoadAnimation}
*/
public static final int SLIDEIN_LEFT = 0x00000100;
/**
* Use with {@link #openLoadAnimation}
*/
public static final int SLIDEIN_RIGHT = 0x00000101;
>>>>>>> CymChad/master



protected static final String TAG = BaseQuickAdapter.class.getSimpleName();
Expand All @@ -102,18 +87,9 @@ public abstract class BaseQuickAdapter<T> extends RecyclerView.Adapter<RecyclerV
@AnimationType
private BaseAnimation mCustomAnimation;
private BaseAnimation mSelectAnimation = new AlphaInAnimation();


<<<<<<< HEAD
protected static final int HEADER_VIEW = 1 << 6;
protected static final int LOADING_VIEW = 1 << 7;
protected static final int FOOTER_VIEW = 1 << 8;
=======
protected static final int HEADER_VIEW = 0x00000110;
protected static final int LOADING_VIEW = 0x00000111;
protected static final int FOOTER_VIEW = 0x00001000;
>>>>>>> CymChad/master

private View mHeaderView;
private View mFooterView;

Expand Down

0 comments on commit 47bce85

Please sign in to comment.