Android 音乐播放器实现歌词显示(三)

2014-11-24 00:08:15 · 作者: · 浏览: 38
} catch (InterruptedException e) {
}
i++;
if (i == mTimeList.size() - 1) {
mPlayer.stop();
break;
}
}
}
}).start();
}
}


main.xml:


xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >


android:id="@+id/button"
android:layout_width="60dip"
android:layout_height="60dip"
android:text="stop" />


android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/button"
android:text="song" />