0

我目前正在开发一个 android 应用程序,其目的是在点击时播放各种各样的日常声音。

我有 3 项活动:家庭、动画和运输。
Home很好,animaux很好(它可以毫无问题地播放所有声音)。
但我想将 admob 集成到Transports活动中。广告显示良好,但当我点击声音按钮时,什么也没有发生。如果您能帮助我理解我的错误以及如何解决它,那就太好了!

这是transports.java

public class Transports extends Activity {

private AdView adView;

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_transports);

    // Create the adView
    adView = new AdView(this, AdSize.BANNER,  "xxxxxx"
    // Lookup your LinearLayout assuming it's been given
    // the attribute android:id="@+id/mainLayout"
    LinearLayout layout = (LinearLayout)findViewById(R.id.linearLayout1);

    // Add the adView to it
    layout.addView(adView);

    // Initiate a generic request to load it with an ad
    adView.loadAd(new AdRequest());
  }

  @Override
  public void onDestroy() {
    if (adView != null) {
      adView.destroy();
    }
    super.onDestroy();
  }
  private MediaPlayer mPlayer = null;

    /** Called when the activity is first created. */
    public void onCreate1(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_transports);

        Button btn_sound_sncf2 = (Button) findViewById(R.id.sncfnew);
        btn_sound_sncf2.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                playSound(R.raw.sncf2);
            }

        });

        Button btn_sound_sncf1 = (Button) findViewById(R.id.sncf1);
        btn_sound_sncf1.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                playSound(R.raw.sncf1);
            }

        });
    }

    @Override
    public void onPause() {
        super.onPause();
        if(mPlayer != null) {
            mPlayer.stop();
            mPlayer.release();
        }
    }

    private void playSound(int resId) {
        if(mPlayer != null) {
            mPlayer.stop();
            mPlayer.release();
        }
        mPlayer = MediaPlayer.create(this, resId);
        mPlayer.start();
    }
}

这是 transports.xml 代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="fill_vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Transports" >

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:gravity="left"
    android:orientation="vertical" >

    <com.google.ads.AdView
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adSize="BANNER"
        ads:adUnitId="xxxxx"
        ads:loadAdOnCreate="true"
        ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
        android:gravity="top" >
    </com.google.ads.AdView>

<Button android:id="@+id/sncfnew"
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/sncf1" 
     android:layout_below="@+id/sncf1" 
     android:layout_marginTop="38dp" 
     android:text="@string/sncfnew" />

<Button android:id="@+id/sncf1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/linearLayout1" 
    android:layout_below="@+id/linearLayout1" 
    android:text="@string/sncf1" />
</LinearLayout>   
</RelativeLayout>

我想知道问题是否不在我的 xml 文件中:我很难用 admob 所需的线性布局创建一个清晰的界面。

4

1 回答 1

0

您实际上并没有设置侦听器。您在方法中有该代码:

public void onCreate1(Bundle savedInstanceState) {

那永远不会被调用。将该代码移至实际onCreate()方法,它应该可以正常工作。

于 2013-10-23T17:44:43.993 回答