簡體   English   中英

手機不會播放點擊聲

[英]Phone won't play the on-click sound

我目前正在開發一個android應用程序,目的是在單擊時播放各種日常聲音。

我有3個活動:房屋,動漫和運輸。
Home很好, animoux很好(它播放所有聲音都沒有任何問題)。
但我想在運輸活動中整合admob。 廣告展示良好,但是當我按一下聲音按鈕時,什么也沒發生。 如果您可以幫助我理解我的錯誤以及如何糾正錯誤,那將非常好!

這是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所需的linearlayout創建清晰的界面。

您實際上並沒有設置監聽器。 您在一個方法中具有該代碼:

public void onCreate1(Bundle savedInstanceState) {

從來沒有被稱為。 將該代碼移到實際的onCreate()方法,它應該可以正常工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM