# MyAdViewPager **Repository Path**: ysb/MyAdViewPager ## Basic Information - **Project Name**: MyAdViewPager - **Description**: 4行代码实现轮播广告 - **Primary Language**: Android - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-10-31 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README private void getAd() { /** * 根据图片的长和宽,自适应手机,不变形 */ vPager.onInit(StringUtils.getDynamicHeight(720, 360)); vPager.setData(mAds); } @Override protected void onResume() { super.onResume(); vPager.startLoop(); } @Override protected void onPause() { super.onPause(); vPager.stopLoop(); }