作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将 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()
中,您没有初始化 AdControlleronCreate11()
和 onCreate1()
,它们永远不会被调用,因为它们不是 Activity 生命周期方法onDestroy1()
也是如此,无论您在那里做什么,都永远不会被调用,因为 onDestroy1() 不是 Activity 生命周期方法你需要做什么:
1.您应该在 onCreate() 中初始化 AdController,该方法会在创建 Activity 时调用,因此请将代码从 onCreate11() 或 onCreate1() 移至 onCreate()
<强>2。您的清理代码可以位于 onDestroy() 中,因此请将其从 onDestroy1() 移至 onDestroy()
<强>3。确保您的 MY_LB_AUDIO_ID、APPFIREWORKS_API_KEY 和 MY ID 是有效的字符串。
关于java - Leadbolt 应用程序墙无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22129364/
我是一名优秀的程序员,十分优秀!