成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Android中怎么實現簡易鬧鐘功能

Android中怎么實現簡易鬧鐘功能,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

成都創(chuàng)新互聯公司專注為客戶提供全方位的互聯網綜合服務,包含不限于成都做網站、網站制作、灌南網絡推廣、成都微信小程序、灌南網絡營銷、灌南企業(yè)策劃、灌南品牌公關、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;成都創(chuàng)新互聯公司為所有大學生創(chuàng)業(yè)者提供灌南建站搭建服務,24小時服務熱線:028-86922220,官方網址:jinyejixie.com

1.創(chuàng)建廣播接收RepeatingAlarm.java

import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.util.Log;public class RepeatingAlarm extends BroadcastReceiver{  @Override  public void onReceive(Context context, Intent intent) {    if (intent.getAction()!=null&&intent.getAction().equals("com.gcc.alarm")) {//自定義的action      intent = new Intent(context,AlarmActivity.class);      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);      context.startActivity(intent);    }  }}

2.廣播在Manifest.xml中配置:

<receiver  android:name=".RepeatingAlarm"  >   <intent-filter >       <action android:name="com.gcc.alarm"/>      </intent-filter> </receiver>

3.通過代碼設置一個鬧鐘

Intent intent = new Intent(this, RepeatingAlarm.class);intent.setAction("com.gcc.alarm");PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0);// Schedule the alarm!AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);          am.set(AlarmManager.RTC,              c.getTimeInMillis(), sender);//c為設置鬧鐘的時間的Calendar對象

4.通過代碼取消一個鬧鐘:

/** * 取消鬧鐘 */private void cancleAlarm(){  Intent intent = new Intent(AlarmActivity.this,RepeatingAlarm.class);  intent.setAction("com.gcc.alarm");  PendingIntent sender = PendingIntent.getBroadcast(AlarmActivity.this, 0, intent, 0);  // And cancel the alarm.  AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);   am.cancel(sender);//取消鬧鐘  }

5.鬧鐘響是彈出的對化框并播放音樂用AlarmActivity.java類實現

import android.app.Activity;import android.app.AlarmManager;import android.app.AlertDialog;import android.app.PendingIntent;import android.content.Context;import android.content.DialogInterface;import android.content.Intent;import android.content.res.AssetFileDescriptor;import android.media.MediaPlayer;import android.os.Bundle;public class AlarmActivity extends Activity {  MediaPlayer mp;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.aty_alarm);    mp = new MediaPlayer();    AssetFileDescriptor file = getResources().openRawResourceFd(R.raw.beep);    try {      mp.setDataSource(file.getFileDescriptor(), file.getStartOffset(),          file.getLength());      mp.prepare();      file.close();    } catch (IOException e) {      e.printStackTrace();    }    mp.setVolume(0.5f, 0.5f);    mp.setLooping(true);    mp.start();    alarmOialog();  }  @Override  protected void onResume() {    super.onResume();  }  @Override  protected void onDestroy() {    super.onDestroy();    if (mp != null) {      if (mp.isPlaying()) {        mp.stop();      }      mp.release();    }  }  public void alarmOialog() {    AlertDialog.Builder builder = new AlertDialog.Builder(this);    builder.setMessage("你有未處理的事件");    builder.setPositiveButton("稍后提醒",        new DialogInterface.OnClickListener() {          @Override          public void onClick(DialogInterface dialogInterface, int i) {            alarm();            finish();          }        });    builder.setNegativeButton("停止", new DialogInterface.OnClickListener() {      @Override      public void onClick(DialogInterface dialogInterface, int i) {        cancleAlarm();        finish();// 關閉窗口      }    });    builder.show().setCanceledOnTouchOutside(false);    ;  }  /**   * 取消鬧鐘   */  private void cancleAlarm() {    // Create the same intent, and thus a matching IntentSender, for    // the one that was scheduled.    Intent intent = new Intent(AlarmActivity.this, RepeatingAlarm.class);    intent.setAction("com.gcc.alarm");    PendingIntent sender = PendingIntent.getBroadcast(AlarmActivity.this,        0, intent, 0);    // And cancel the alarm.    AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);    am.cancel(sender);  }  private void alarm() {    // 獲取系統(tǒng)的鬧鐘服務    AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);    // 觸發(fā)鬧鐘的時間(毫秒)    long triggerTime = System.currentTimeMillis() + 10000;    Intent intent = new Intent(this, RepeatingAlarm.class);    intent.setAction("com.gcc.alarm");    PendingIntent op = PendingIntent.getBroadcast(this, 0, intent, 0);    // 啟動一次只會執(zhí)行一次的鬧鐘    am.set(AlarmManager.RTC, triggerTime, op);    // 指定時間重復執(zhí)行鬧鐘    // am.setRepeating(AlarmManager.RTC,triggerTime,2000,op);  }}

6.注:

1.aty_alarm.xml為空布局,不需添加任何組件 2.使用MediaPlayer播放res/raw目錄下音頻文件的方法如下:

mp = new MediaPlayer();    AssetFileDescriptor file = getResources().openRawResourceFd(R.raw.beep);    try {      mp.setDataSource(file.getFileDescriptor(), file.getStartOffset(),          file.getLength());

看完上述內容,你們掌握Android中怎么實現簡易鬧鐘功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創(chuàng)新互聯行業(yè)資訊頻道,感謝各位的閱讀!

分享題目:Android中怎么實現簡易鬧鐘功能
本文鏈接:http://jinyejixie.com/article18/gcesgp.html

成都網站建設公司_創(chuàng)新互聯,為您提供移動網站建設做網站、手機網站建設、網站建設、面包屑導航、品牌網站設計

廣告

聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯

搜索引擎優(yōu)化
新乐市| 滨海县| 景德镇市| 东宁县| 兴宁市| 综艺| 色达县| 巴青县| 丹江口市| 平阴县| 晋州市| 唐海县| 贡觉县| 西藏| 石渠县| 克什克腾旗| 黑龙江省| 光山县| 合阳县| 新营市| 乌兰浩特市| 乐山市| 靖远县| 安平县| 建昌县| 彩票| 探索| 通道| 循化| 波密县| 北川| 哈巴河县| 基隆市| 山丹县| 广饶县| 阜阳市| 峨山| 香格里拉县| 肃北| 肥城市| 怀安县|