5

我想使用默认TICK声音,但我不知道如何或在哪里放置此代码

view.playSoundEffect(SoundEffectConstants.CLICK);

我在另一篇文章中找到了这段代码。

这是我的代码:

        protected void onCreate(Bundle savedInstanceState)
        {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        final MediaPlayer mp = MediaPlayer.create(this, R.raw.blah);

        Button Button01 = (Button)this.findViewById(R.id.Button01);
        Button01.setOnClickListener(new View.OnClickListener() 
        {
            public void onClick(View v) 
            {
                mp.start();
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    public void onClick(View v){}

    public void disclaimerBTN (View v){
        Toast.makeText(this, "FAILED:      The remote object is " +
                            "not responding to this command",Toast.LENGTH_LONG).show();
    }
}

那么我将把view.play.....代码放在哪里?非常感激。

4

2 回答 2

8

对于在按钮单击事件上使用AudioManager.playSoundEffect ,您可以尝试如下:

AudioManager audioManager = 
            (AudioManager) this.getSystemService(Context.AUDIO_SERVICE);

 Button01.setOnClickListener(new View.OnClickListener() 
        {
            public void onClick(View v) 
            {
                 audioManager.playSoundEffect(SoundEffectConstants.CLICK);   
                 //mp.start();
            }
        });

作为参考,您可以在 Google 源代码中查看此示例:

http://code.google.com/p/android-traditional-chinese-ime/source/browse/trunk/src/com/googlecode/tcime/SoundMotionEffect.java?r=13

于 2012-12-03T09:52:11.403 回答
3

您可以通过以下方式从每个视图播放声音:

Button01.setOnClickListener(new View.OnClickListener() 
        {
            public void onClick(View v) 
            {
                 v.playSoundEffect(SoundEffectConstants.CLICK);   
            }
        });

请注意,如果默认情况下关闭触摸声音,则不会播放声音。这是在常规设备声音首选项中设置的(设置->声音->可听或在较新的操作系统上:选项>声音>触摸)

另外,如果设置了这个设置,大多数点击事件都会触发点击声音!

于 2014-04-11T08:26:15.030 回答