admin 管理员组文章数量: 1103785
文章目录
- 1.布局设置
-
- 总体展示
- 图片按钮样式
- 进度条样式
- 2.MainActivity主界面代码
-
-
- 动作定义
- 自定义广播
- 动态发送广播
- 动作监听
-
- 3.MusicService服务代码
-
- 音乐准备
- 循环绑定
- 进度条
- 逻辑控制
- 结果演示
- 5.全部代码
1.布局设置
总体展示
图片按钮样式
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.5"
android:gravity="center"
android:orientation="horizontal"
android:weightSum="4">
<ImageButton
android:id="@+id/previous"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="#FFFFFF"
android:src="@drawable/previous" />
<ImageButton
android:id="@+id/play"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="#FFFFFF"
android:src="@drawable/play" />
<ImageButton
android:id="@+id/stop"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="#FFFFFF"
android:src="@drawable/stop" />
<ImageButton
android:id="@+id/next"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:background="#FFFFFF"
android:src="@drawable/next" />
</LinearLayout>
进度条样式
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.1"
android:orientation="horizontal">
<TextView
android:id="@+id/currentTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:gravity="center"
android:text="@string/beginTime"
android:textSize="18sp" />
<ProgressBar
android:id="@+id/progressBar"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1.4"
android:max="100" />
<TextView
android:id="@+id/totalTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.1"
android:gravity="center"
android:text="@string/endTime"
android:textSize="18sp" />
本文标签: 播放器 简易 音乐 Andriod Studio
版权声明:本文标题:Andriod Studio实现简易音乐播放器 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.520sys.cn/xp/1754990837a1454337.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论