I have created MobClix account, made sure I have filled up all kinds of settings (account, payment everything), Added the app, carefully copied the Application ID. Made sure I have activated Full screen and 320x50 ads on test modes.
Then I followed the developer guide and placed this in my activity:
<com.mobclix.android.sdk.MobclixMMABannerXLAdView
android:id="@+id/mainScreenBannerAd"
android:layout_width="320dip"
android:layout_height="50dip" >
</com.mobclix.android.sdk.MobclixMMABannerXLAdView>
and in the respective Class:
MobclixMMABannerXLAdView mx=(MobclixMMABannerXLAdView)findViewById(R.id.mainScreenBannerAd);
mx.getAd();
I also have this in the same class:
MobclixFullScreenAdView adview = new MobclixFullScreenAdView(this);
adview.requestAndDisplayAd();
The second code snippet triggers a fullscreen ad view and a Test Ad banner is displayed, the first one however doesn't seem to do anything and nothing is showing inside the activity. I have made sure that the 320x50 banner ad view is in the activity and taking up space by placing different color background views before and after that. I am sure that its there but not displaying anything.
Has anyone got through such a situation?
TL DR: One of the MobClix ads show fine (fullscreen), the one in activity doesn't