Android 声音可以在模拟器中工作,但不能在手机上工作

Android 声音可以在模拟器中工作,但不能在手机上工作,android,Android,我有这个密码 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final MediaPlayer mp = MediaPlayer.create(this, R.raw.blah); Bu

我有这个密码

    @Override
    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();
    }
当我在模拟器中使用时,它可以工作,但如果我使用手机进行测试,它不会播放声音

我的按钮中没有引用此代码。。我应该吗?

试试这个代码

   MediaPlayer mp = new MediaPlayer().create(context, R.raw.blah);

检查你的设备音量。在我的另一个按钮中,它显示一个TOAST标题,我有android:onClick=“reference to code”或类似的。。。我应该在我点击的按钮中有什么声音吗?参考上述代码?