3
我想在用戶進行inapp購買時隱藏/停止3d橫幅廣告。但我無法弄清楚如何。如何在我的應用中隱藏StartApp廣告?
在活動啓動的廣告會自動啓動並沒有阻止它
<com.startapp.android.publish.banner.banner3d.Banner3D
android:id="@+id/startApp3DBanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
的方式。
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
startAppAd.onResume();
。
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
StartAppAd.init(this, C.STARTAPP_DEV_ID, C.STARTAPP_APP_ID);
setContentView(R.layout.main_activity);
startAppAd = new StartAppAd(this);
我認爲這個答案是工作。你是否嘗試過。 –