Java Code Examples for cn.bingoogolapple.bgabanner.BGABanner#Adapter
The following examples show how to use
cn.bingoogolapple.bgabanner.BGABanner#Adapter .
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: LiveFragment.java From LQRBiliBlili with MIT License | 4 votes |
@Override public void setBanner(BGABanner.Adapter<ImageView, String> adapter, List<String> banners) { mBanner.setAdapter(adapter); mBanner.setData(banners, banners); }
Example 2
Source File: LiveContract.java From LQRBiliBlili with MIT License | votes |
void setBanner(BGABanner.Adapter<ImageView, String> adapter, List<String> banners);