androidandroid 8.0 开机铃声声如何实现

没有更多推荐了,
加入CSDN,享受更精准的内容推荐,与500万程序员共同成长!android 开机铃声如何添加_百度知道
android 开机铃声如何添加
我有更好的答案
手机的开机铃声属于系统默认内置铃声,是不支持更换的。
手机的开机铃声属于系统默认内置铃声,是不支持更换的。
为您推荐:
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。没有更多推荐了,
加入CSDN,享受更精准的内容推荐,与500万程序员共同成长!&nbsp>&nbsp
&nbsp>&nbsp
&nbsp>&nbsp
android实现开机自动播放音乐实例(Broadcast、Service)
摘要:转自:http://blog.csdn.net/liwei3gjob/article/details/8011196/android实现开机自动播放音乐实例(Broadcast、Service)1.首先开机启动后系统会发出一个StandardBroadcastAction,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Con
转自:http://blog.csdn.net/liwei3gjob/article/details/8011196/
android实现开机自动播放音乐实例(Broadcast、Service)1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。3.在AndroidManifest.xml中,首先加入& uses-permission android:name=”android.permission.RECEIVE_BOOT_COMPLETED”&& /uses-permission&来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其& intent-filter&中加入& action android:name=”android.intent.action.BOOT_COMPLETED” /& ,以使其能捕捉到这个Action。一个例子
xml:[html]&view plaincopy
&uses-permission&android:name=&android.permission.RECEIVE_BOOT_COMPLETED&&&/uses-permission&&&
&receiver&android:name=&.StartBroadcastReceiver&&android:label=&@string/app_name&&&&
&&intent-filter&&&
&&&&action&android:name=&android.intent.action.BOOT_COMPLETED&&/&&&
&&&&category&android:name=&android.intent.category.LAUNCHER&&/&&&
&&/intent-filter&&&
&/receiver&&&
[html]&view plaincopy
&service&android:name=&.StartBootService&/&&&
Java:[html]&view plaincopy
public&class&StartBroadcastReceiver&extends&BroadcastReceiver&{&&
static&final&String&ACTION&=&&android.intent.action.BOOT_COMPLETED&;&&
public&void&onReceive(Context&context,&Intent&intent)&{&&
&&&&if&(intent.getAction().equals(ACTION)){&&
&&&&&&&&context.startService(new&Intent(context,&StartBootService.class),&null);//启动倒计时服务&&
&&&&&&&&Toast.makeText(context,&&OlympicsReminder&service&has&started!&,&Toast.LENGTH_LONG).show();&&
Service:[java]&view plaincopy
public&class&StartBootService&extends&Service&{&&
&&&&private&static&final&String&TAG&=&&MyService&;&&
&&&&private&MediaPlayer&&&
&&&&@Override&&
&&&&public&IBinder&onBind(Intent&intent)&{&&
&&&&&&&&//&TODO&Auto-generated&method&stub&&
&&&&&&&&return&null;&&
&&&&&*&创建服务&
&&&&public&void&onCreate()&{&&
&&&&&&&&super.onCreate();&&
&&&&&&&&&&
&&&&&&&&Log.i(TAG,&开机服务已经创建!&);&&
&&&&&&&&//初始化播放器&&
&&&&&&&&player&=&MediaPlayer.create(this,&R.drawable.suaicong);&&
&&&&&&&&player.setLooping(true);&&
&&&&&&&&&&
&&&&&*&开始服务&
&&&&public&void&onStart(Intent&intent,&int&startId)&{&&
&&&&&&&&//&TODO&Auto-generated&method&stub&&
&&&&&&&&super.onStart(intent,&startId);&&
&&&&&&&&Toast.makeText(this,&&开机播放服务~&,&0).show();&&
&&&&&&&&player.start();&&
&&&&&*&暂停服务&
&&&&public&void&onDestroy()&{&&
&&&&&&&&//&TODO&Auto-generated&method&stub&&
&&&&&&&&super.onDestroy();&&
&&&&&&&&Toast.makeText(this,&&停止播放服务~&,&0).show();&&
&&&&&&&&player.stop();&&
以上是的内容,更多
的内容,请您使用右上方搜索功能获取相关信息。
若你要投稿、删除文章请联系邮箱:zixun-group@service.aliyun.com,工作人员会在五个工作日内给你回复。
云服务器 ECS
可弹性伸缩、安全稳定、简单易用
&40.8元/月起
预测未发生的攻击
&24元/月起
为您提供0门槛上云实践机会
你可能还喜欢
你可能感兴趣
阿里云教程中心为您免费提供
android实现开机自动播放音乐实例(Broadcast、Service)相关信息,包括
的信息,所有android实现开机自动播放音乐实例(Broadcast、Service)相关内容均不代表阿里云的意见!投稿删除文章请联系邮箱:zixun-group@service.aliyun.com,工作人员会在五个工作日内答复
售前咨询热线
支持与服务
资源和社区
关注阿里云
International没有更多推荐了,
加入CSDN,享受更精准的内容推荐,与500万程序员共同成长!

我要回帖

更多关于 android 8.0 开机铃声 的文章

 

随机推荐