-2

私の質問に関して、このウェブサイトでいくつかの回答済みの質問を調べましたが、これを機能させることができません。ボタンをクリックすると音を鳴らそうとしています。

Java コード:

package jg.AvengersSoundboard;

import android.app.Activity;
import android.os.Bundle;

public class Activity2 extends Activity {
    private Object mp;
    /** Called when the activity is first created. */
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main2);
    }
}

XML コード:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"  >



<Button
    android:id="@+id/button1"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Brain bag full of cats (HULK)"/>



<Button
    android:id="@+id/button2"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Do you think this madness will end in your rule? (THOR)" />



<Button
    android:id="@+id/button3"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Freedom (LOKI)" />



<Button
    android:id="@+id/button4"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Genius, Playboy, Billionaire. (STARK)" />




<Button
    android:id="@+id/button5"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="I have an army, we have a Hulk.  (STARK)" />



<Button
    android:id="@+id/button6"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="I put a bullet in my mouth. (HULK)" />



<Button
    android:id="@+id/button7"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="I&apos;m bringing the party to you (STARK)" />



<Button
    android:id="@+id/button8"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Last time in Germany (Cpt. America)" />



<Button
    android:id="@+id/button9"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Move away please" />



<Button
    android:id="@+id/button10"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Submarine (HULK)" />



<Button
    android:id="@+id/button11"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Tell me nobody kissed me (STARK)" />



<Button
    android:id="@+id/button12"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="You mean peace" />


   <Button
       android:id="@+id/Button02"
       android:layout_width="match_parent"
       android:layout_height="55px"
       android:text="Previous"
       android:textSize="18px" >

</Button>    

4

2 に答える 2

0

サウンドファイルをres/raw/beep.mp3に保存する必要があります

private MediaPlayer mp;

ボタンクリックイベントにこれを追加します

    mp = MediaPlayer.create(this, R.raw.beep);
    mp.start();//to start playing the sound

それを止めるために

    mp.stop();
于 2012-06-13T06:58:15.077 に答える
0

まず、次のように、XML ファイルのボタン ID を使用してボタンのオブジェクトを作成する必要があります。

Button one = (Button)this.findViewById(R.id.button1);
Button two = (Button)this.findViewById(R.id.button2);
Button zero = (Button)this.findViewById(R.id.button3);

...他の人も同じ...

media player次のようなインスタンス変数を作成します。

MediaPlayer mp;

今あなたのOnCreate方法でこれを書いてください:

mp = MediaPlayer.create(this, R.raw.mamacita_zero/*Your Sound file in raw folder*/);

次に、ボタンの onClickListener を設定します。

zero.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mp.start();
            }
        });

各ボタンで、同じアプローチを使用してサウンドを再生できます。

于 2012-06-13T07:01:58.883 に答える