gpt4 book ai didi

android - 如何将 AdMob 添加到 Android 中的 ViewClass

转载 作者:行者123 更新时间:2023-11-29 14:09:30 27 4
gpt4 key购买 nike

我设法将 adMob 添加到标题屏幕,该布局是用 *.xml 文件编写的。

setContentView(R.layout.main); 
AdView adView = (AdView)findViewById(R.id.ad);
adView.requestFreshAd();

main.xml 包含:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/de.xazen.tictactoe"
android:background="@drawable/title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
</RelativeLayout>

游戏本身是用 Tttview 编写的。

public class TttView extends View

Activity Game.java 创建一个 TttView 实例并使用 setcontent(tttView) 将其用作布局。

public class Game extends Activity{

private TttView tttView;
.
.
.
setContentView(tttView);
}

如何将 adMob 添加到游戏本身?

最佳答案

嗯,从你的问题中看不出 tttView 是什么或它是如何设置的,但如果它创建了一个要显示的布局类型,你可以以编程方式将 AdView 添加到 LinearLayout 或类似这样的:

    // Setup layout parameters
LinearLayout.LayoutParams params;
params = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT);

// Create a linear layout
LinearLayout layout = new LinearLayout(mContext);
layout.setOrientation(LinearLayout.VERTICAL);
layout.setPadding(6,6,6,6);

AdView mAdView = new AdView(this);
layout.addView(mAdView,params);

或者如果您从 XML 文件加载布局,您可以执行与上面类似的操作

    setContentView(R.layout.game); 

game.xml 在哪里:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/de.xazen.tictactoe"
android:background="@drawable/title"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<tttView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
...
/>
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC"
/>
</RelativeLayout>

关于android - 如何将 AdMob 添加到 Android 中的 ViewClass,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4408731/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com