gpt4 book ai didi

java - Leadbolt 应用程序墙无法正常工作

转载 作者:行者123 更新时间:2023-12-01 13:19:54 25 4
gpt4 key购买 nike

我尝试将 Leadbolt“应用程序墙”添加到我的应用程序墙中,但它没有显示。

我按照文档的说明进行了操作。

这是我的 MainActivity.java

package com.NAME.APP;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.NAME.APP.R;
import com.SDKPACKAGE.AdController;
import com.appfireworks.android.track.AppTracker;
import android.content.Context;
import android.content.Intent;
import com.SDKPACKAGE.AdBootReceiver;

public class MainActivity extends Activity {
/** Called when the activity is first created. */

public class BootReceiver extends AdBootReceiver {
public void onReceive(Context ctx, Intent intent) {
intent.putExtra("sectionid","MY ID");
super.onReceive(ctx, intent);
}
}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); //Set the screen's view to your xml file

Button button1 = (Button) findViewById(R.id.button1); // Retrieve the button from the XML file
button1.setOnClickListener(new View.OnClickListener() { //Add a listener for when the button is pressed
@Override
public void onClick(View v) {
sendToTwitter();
}
});
}

protected void sendToTwitter() {
String url = "MY URL"; // You could have this at the top of the class as a constant, or pass it in as a method variable, if you wish to send to multiple websites
Intent i = new Intent(Intent.ACTION_VIEW); // Create a new intent - stating you want to 'view something'
i.setData(Uri.parse(url)); // Add the url data (allowing android to realise you want to open the browser)
startActivity(i); // Go go go!
}

private AdController ad;

public void onCreate11(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ad = new AdController(this, "MY ID");
ad.loadStartAd("MY_LB_AUDIO_ID", "MY ID");
AppTracker.startSession(this, "APPFIREWORKS_API_KEY");
}

@Override
public void onPause() {
super.onPause();
if(ad != null) {
ad.destroyAd();
}
if(!isFinishing()) {
AppTracker.pause(getApplicationContext());
}
}

@Override
public void onResume() {
super.onResume();
AppTracker.resume(getApplicationContext());
}

public void onDestroy1() {
super.onDestroy();
if(ad != null) {
ad.destroyAd();
}
AppTracker.closeSession(getApplicationContext(),true);
}

@SuppressWarnings("unused")
private AdController ad1;

public void onCreate1(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ad = new AdController(this, "ID");
ad.loadAd();
}

public void onDestroy() {
ad.destroyAd();
super.onDestroy();
}
}

如果有人知道这个问题,请告诉我

提前致谢

PS:我是一名 Java/android 开发初学者。这是我的第一个项目。对于我来自德国的英语感到抱歉:)

最佳答案

需要注意的几点:

  • onCreate() 中,您没有初始化 AdController
  • 另一方面,您有 onCreate11()onCreate1(),它们永远不会被调用,因为它们不是 Activity 生命周期方法
  • 对于 onDestroy1() 也是如此,无论您在那里做什么,都永远不会被调用,因为 onDestroy1() 不是 Activity 生命周期方法
  • 除非出于本文目的对其进行编辑,否则 MY_LB_AUDIO_ID、MY ID、APPFIREWORKS_API_KEY 应为有效字符串,您可以从 LeadBolt 仪表板获取这些字符串

你需要做什么:

1.您应该在 onCreate() 中初始化 AdController,该方法会在创建 Activity 时调用,因此请将代码从 onCreate11() 或 onCreate1() 移至 onCreate()

<强>2。您的清理代码可以位于 onDestroy() 中,因此请将其从 onDestroy1() 移至 onDestroy()

<强>3。确保您的 MY_LB_AUDIO_ID、APPFIREWORKS_API_KEY 和 MY ID 是有效的字符串。

有关 Activity 和生命周期的更多信息 here , herehere .

关于java - Leadbolt 应用程序墙无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22129364/

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