我已经成功地在我的android应用程序中集成了vungle视频广告,但广告仅以横向模式显示,但我希望广告以纵向模式显示。
我在清单文件中完成了以下实现
<activity
android:name="com.vungle.publisher.FullScreenAdActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"/>
还有我的活动:
<activity
android:name=".CreateGame"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustPan" />
我按照这个网址设置了vungle广告https://github.com/Vungle/vungle-resources/blob/master/English/Android/current-release/android-dev-guide.md
在我的CreteGame活动中,我遵循了以下代码
在onCreate方法中,我做了这样的事情:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.creategame);
final String app_id = "App_id";
// initialize the Publisher SDK
vunglePub.init(this, app_id);
}
我在函数()中遵循了以下编码
final AdConfig globalAdConfig = vunglePub.getGlobalAdConfig();
globalAdConfig.setOrientation(Orientation.autoRotate);
globalAdConfig.setOrientation(Orientation.matchVideo);
if(!vunglePub.isAdPlayable()) {
return;
}
else{
vunglePub.playAd(globalAdConfig);
}
请帮我只在纵向视图中显示广告提前感谢
您应该删除:
globalAdConfig.setOrientation(Orientation.matchVideo);
并且只离开:
globalAdConfig.setOrientation(Orientation.autoRotate);
如果你拿着人像设备,它会显示人像广告。"matchVideo"应该主要以横向模式显示。
谢谢,