我有一个非常简单的问题,即在NativeActivity应用上叠加横幅广告等内容。所以,我在java中的位置 -
public class freddy extends android.app.NativeActivity
然后 -
void android_main(android_app* app) //this in c
在我看来,这个 - https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#play不起作用,因为 -
LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayout);
layout.addView(adView);
不再有效。我发现这方面的信息很少,但它必须抓住很多人编写跨平台应用程序?我错过了一些明显的事吗?我希望如此:)
谢谢,托尼