com.oushangfeng.pinnedsectionitemdecoration.utils.FullSpanUtil Java Examples

The following examples show how to use com.oushangfeng.pinnedsectionitemdecoration.utils.FullSpanUtil. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BaseHeaderAdapter.java    From v9porn with MIT License 4 votes vote down vote up
@Override
public void onAttachedToRecyclerView(RecyclerView recyclerView) {
    super.onAttachedToRecyclerView(recyclerView);
    FullSpanUtil.onAttachedToRecyclerView(recyclerView, this, TYPE_HEADER);
}
 
Example #2
Source File: BaseHeaderAdapter.java    From v9porn with MIT License 4 votes vote down vote up
@Override
public void onViewAttachedToWindow(BaseViewHolder holder) {
    super.onViewAttachedToWindow(holder);
    FullSpanUtil.onViewAttachedToWindow(holder, this, TYPE_HEADER);
}
 
Example #3
Source File: BaseHeaderAdapter.java    From v9porn with MIT License 4 votes vote down vote up
@Override
public void onAttachedToRecyclerView(RecyclerView recyclerView) {
    super.onAttachedToRecyclerView(recyclerView);
    FullSpanUtil.onAttachedToRecyclerView(recyclerView, this, TYPE_HEADER);
}
 
Example #4
Source File: BaseHeaderAdapter.java    From v9porn with MIT License 4 votes vote down vote up
@Override
public void onViewAttachedToWindow(BaseViewHolder holder) {
    super.onViewAttachedToWindow(holder);
    FullSpanUtil.onViewAttachedToWindow(holder, this, TYPE_HEADER);
}
 
Example #5
Source File: StockAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onAttachedToRecyclerView(RecyclerView recyclerView) {
    super.onAttachedToRecyclerView(recyclerView);
    FullSpanUtil.onAttachedToRecyclerView(recyclerView, this, StockEntity.StockInfo.TYPE_HEADER);
}
 
Example #6
Source File: StockAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onViewAttachedToWindow(BaseViewHolder holder) {
    super.onViewAttachedToWindow(holder);
    FullSpanUtil.onViewAttachedToWindow(holder, this, StockEntity.StockInfo.TYPE_HEADER);
}
 
Example #7
Source File: RecyclerAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onAttachedToRecyclerView(RecyclerView recyclerView) {
    FullSpanUtil.onAttachedToRecyclerView(recyclerView, this, TYPE_SECTION);
}
 
Example #8
Source File: RecyclerAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onViewAttachedToWindow(RecyclerViewHolder holder) {
    FullSpanUtil.onViewAttachedToWindow(holder, this, TYPE_SECTION);
}
 
Example #9
Source File: BaseHeaderAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onAttachedToRecyclerView(RecyclerView recyclerView) {
    super.onAttachedToRecyclerView(recyclerView);
    FullSpanUtil.onAttachedToRecyclerView(recyclerView, this, TYPE_HEADER);
}
 
Example #10
Source File: BaseHeaderAdapter.java    From PinnedSectionItemDecoration with Apache License 2.0 4 votes vote down vote up
@Override
public void onViewAttachedToWindow(BaseViewHolder holder) {
    super.onViewAttachedToWindow(holder);
    FullSpanUtil.onViewAttachedToWindow(holder, this, TYPE_HEADER);
}