24 lines
715 B
Plaintext
24 lines
715 B
Plaintext
package com.novelbook.android.utils;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
public interface AdInterface {
|
|
/**
|
|
* 显示activity 上的广告
|
|
* @param height
|
|
* @param adY
|
|
*/
|
|
public void showStatusAd(int height,int adY);
|
|
public void showTopBanner(int height,int adY);
|
|
public void showNativeBannerInLines(int height,int adY);
|
|
public void hideSystemUI();
|
|
public void showRefresh(int visible);
|
|
public void showProgressbar(boolean dismissAble,String msg);
|
|
public void hideProgressbar();
|
|
public void showLoading(boolean isShow);
|
|
public void hideReadSetting();
|
|
public void showReadSetting();
|
|
public void hideStatusAds();
|
|
public Bitmap getBitmapWithAd();
|
|
}
|