-
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
-
TextViewSample
Andoid小例程,对入门相当有用!关于TextView的。(Andoid small routines for beginners very useful! About a TextView.)
- 2013-07-12 01:08:22下载
- 积分:1
-
android OAuth认证、使用网易微博开放平台实现聊天功能源码
OAuth认证、使用网易微博开放平台实现聊天功能
- 2014-09-22下载
- 积分:1
-
nfccard
安卓NFC读写非接触IC卡是一款基于非接触IC卡的NFC应用,支持符合ISO7816—3、ISO15693和Felica等国际标准卡片的读取,能够读取的电子标签包括公交卡、银行卡、图书馆射频标贴等。NFCard可以用来读取电子钱包(主要是公交卡)中未加密的余额、交易记录、标识等信息。该软件使用了模块化设计,方便扩充支持其他特殊类型的卡片协议和指令。(Android NFC read write non-contact IC card is a NFC application based on Contactless IC card, support in line with the international standard ISO7816- 3, iso15693 and felica etc. card read, to read electronic tag includes bus card, bank card, library RF stickers and so on. NFCard can be used to read the electronic wallet (mainly public transport card) in the balance of the encryption, transaction records, identification and other information. The software uses a modular design to facilitate the expansion of support for other special types of card protocols and instructions.)
- 2016-07-05 20:12:46下载
- 积分:1
-
768575
LoaderManager异步加载数据库,精选android学习源码,很好的参考资料。(LoaderManager asynchronous loading the database, select the Android learning source code, a good reference.)
- 2013-12-17 12:57:18下载
- 积分:1
-
Android应用开发实例 TrainSystemHelper 完整源码
Android应用开发实例 TrainSystemHelper
- 2013-01-10下载
- 积分:1
-
SPYDROID 最新源码
资源描述spydroid-ipcamera这个项目能够将Android设备变成一个漂亮的网络摄像机 ip camera。Spydroid是一个很小的app,能够将手机的摄像头和麦克风streams至你的浏览器或VLC。它是市场上最强大的工具,一种方法用来从智能手机传输音频/视频到您的电脑。H.264支持分辨率高达1080p和在手机上运行ICS或JB就能够支持AAC格式。
- 2022-03-22 21:43:36下载
- 积分:1
-
android 侧边栏 翻页 导航 示例源码 效果不错
android 侧边栏 翻页 导航
- 2014-01-16下载
- 积分:1
-
菜鸟商城最新android源码
包括以下功能:
1.支付(支付宝,微信,百度钱包,网银)
2.首页
3.热卖
4.商品大全
5.购物车
6.我的
7.商品列表
8.商品详情
9.注册/登录
10.收货地址
11.我的订单
12.我的收藏
- 2022-03-17 01:25:42下载
- 积分:1
-
Facebook 喜爱滑块
这款应用程序定义了facebook 喜爱滑块。欢迎大家下载、试用。谢谢大家的支持!
- 2022-01-31 18:11:08下载
- 积分:1