Hi
We have a rich media interstitial ad which is expected to have the capability of capturing user input when a button is clicked on this ad. For example, when user click on a button on this ad, we can show a form to let user register if they are interested.
In order to do this, I need to handle the AdActivity event when it is triggered. Now I can see the log shows an unhandled intent is being thrown. Can I know how I can extend the AdActivity class to achieve this?
Hope I have made myself clear for my intention.
Thanks for your help.
--
---
You received this message because you are subscribed to the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
This is just to update my last post. I have resolved the problem by change the activity intent-filter in my manifest as:<activity android:name=".CustomActivity"
android:label="@string/title_activity_custom">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="safari" android:host="my.url" />
</intent-filter>
</activity>
Hope it will help anyone having the similar issue.
Thanks Eric and William for your help.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/4RbVaGygCo8/unsubscribe?hl=en-US.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.