通过使用 onItemClick 并且如果条件我将字符串数组与原始文件夹 MP3 文件匹配通过单击 listview 歌曲,我需要通过调用该 mplay 方法来播放其他活动中的歌曲。请帮助我....
public void onItemClick(AdapterView<?> parent, View view, int position,long id)
{
Intent intent = new Intent(this, Play.class);
startActivity(intent);
MediaPlayer mPlayer2;
MediaPlayer mPlayer3;
if(position==0)
{
public void mplay() **<--------- I Get error in this Line**
{
mPlayer2= MediaPlayer.create(this, R.raw.gayatri);
mPlayer2.start();
}
}