-
Android 简单播放歌曲功能演示
Android 简单播放歌曲功能演示,播放本地音乐,非网络播放,可播放、暂停,运行效果如截图所示,在编写时,要注意以下代码:
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
ImageButton start;//播放、暂停按钮
ImageButton stop;//停止按钮
ActivityReceiver activityReceiver;
int status = 1;//当前的状态,1没有声音播放 ,2 正在播放声音,3暂停
public void onCreate(Bundle savedInstanceState) {//重写的onCreate方法
super.onCreate(savedInstanceState);
setContentView(R.layout.main);//设置当前的用户界面
start = (ImageButton) this.findViewById(R.id.start);//得到start的引用
stop = (ImageButton) this.findViewById(R.id.stop);//得到stop按钮的引用
start.setOnClickListener(this);//为按钮添加监听
stop.setOnClickListener(this);//为按钮添加监听
activityReceiver = new ActivityReceiver();//创建BroadcastReceiver
IntentFilter filter = new IntentFilter();//创建IntentFilter过滤器
filter.addAction("wyf.ytl.update");//添加Action
registerReceiver(activityReceiver, filter);//注册监听
Intent intent = new Intent(this, MyService.class);//创建Intent
startService(intent);//启动后台Service
}
- 2023-08-23 12:30:03下载
- 积分:1
-
Letao
Android模仿乐淘的应用程序分析源码,应用程序编程,很好的参考资料。(The application of Android mimic Le Amoy source analysis, application programming, a good reference.)
- 2013-11-11 10:25:51下载
- 积分:1
-
相册预览效果,模拟系统自带的效果。
应用背景相册预览效果,模拟系统自带的效果,可以直接运行。关键技术1,可以左右滑动预览。2,可以放大缩小预览。3,可以直接导入使用
- 2022-08-12 19:32:36下载
- 积分:1
-
Android源码丁丁优惠券
界面非常的美观,适合UIt学习
- 2023-05-12 04:25:03下载
- 积分:1
-
android_capture
基于android手机的远程视频监控系统
有安卓手机端和pc服务器端
可以通过网络将手机摄像头捕捉到的数据传送到pc端以图片显示(Andrews mobile terminal and PC server-side remote video surveillance system based on android phone through the network to the mobile phone camera to capture the data transfer to the pc end display pictures)
- 2013-03-27 18:00:04下载
- 积分:1
-
5555555555
贪吃蛇源码
贪吃蛇游戏是一款老牌的手机游戏,同时也是一款比较需要耐心地游戏。贪吃蛇游
戏就是一条小蛇,不停地在屏幕上游走,吃各个方向出现的食物,越吃越长。只要蛇头
碰到屏幕四周,或者碰到自己的身子,小蛇就立即毙命。玩“贪吃蛇游戏”
,难度最大
的不是蛇长得很长的时候,而是开始的时候。那时蛇身很短,看上去难度不大,却最容
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-23 19:21:20下载
- 积分:1
-
简易的安卓天气预报软件
简易的安卓天气预报软件,可以实现不同城市之间的切换,显示未来三天的天气情况。对于安卓初学者还是不错的学习资源。
- 2022-02-09 18:38:46下载
- 积分:1
-
ExpendListView
android中ExpandListView伸缩下拉控件,与ListView差不多设置一样的属性(android ExpandListView has set)
- 2013-11-07 10:13:42下载
- 积分:1
-
安卓 HTTP
大多数网络连接的 Android 应用程序将使用 HTTP 来发送和接收数据。安卓系统包括两个 HTTP 客户端: HttpURLConnection 和 Apache HTTP 客户端。两者都支持 HTTPS 流上传和下载、 可配置的超时、 IPv6 和连接池。
- 2022-08-23 23:56:29下载
- 积分:1
-
android
android 日历,很不错的,收藏着以后可以看看,当作参考吧,很详细的,写的不错的日历demo,android 日历,很不错的,收藏着以后可以看看,当作参考吧,很详细的,写的不错的日历demo,android 日历,很不错的,收藏着以后可以看看,当作参考吧,很详细的,写的不错的日历demo,
- 2022-02-04 00:26:11下载
- 积分:1