通過使用onItemClick和條件我匹配字符串數組與原始文件夾MP3文件我想通過點擊列表視圖歌曲我需要在其他活動通過調用只是該mplay方法播放歌曲。請幫助我....如果條件在Android
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();
}
}
這是一個語法錯誤。您不能在常規代碼塊中聲明方法。也許學習JAVA語言教程? – 2013-04-04 06:41:34
在另一個Activity中調用一個方法只是:'Play.this.mplay()'並且該方法必須退出該活動 – tttony 2013-04-04 06:43:33