上一篇文章中,简单介绍了音乐播放器的布局以及具体的代码实现,在这里先补充几点:
1.其中的一些素材,比如背景图、图标的资源是我提前加入到文档中保存好的
Ps.最重要的一点,背景图一定要使用.jpg格式的,具体什么原因我也属于未知状态,求各位大神指教一二...小女子感激不尽
2.往后的实现过程中,还是需要用到一个没有显示出来的布局,也就是ListView中歌手、歌曲名以及歌曲路径的显示,在这里先提前把这部分代码贴上
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/text_song"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#6B6B6B" />
<TextView
android:id=