实现闹钟运行的效果如下:
通知栏的运行后效果图如下:
布局文件(activity_main.xml)
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:ID="@+ID/activity_main" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:paddingBottom="@dimen/activity_vertical_margin" androID:paddingleft="@dimen/activity_horizontal_margin" androID:paddingRight="@dimen/activity_horizontal_margin" androID:paddingtop="@dimen/activity_vertical_margin" androID:orIEntation="vertical" tools:context="com.example.g150825_androID28.MainActivity"> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="设置闹钟(一次)" androID:onClick="setAlarmOne" /> <button androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="设置闹钟(周期)" androID:onClick="setAlarm" /> <button androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:text="取消周期闹钟" androID:onClick="cancelAlarm" /> <button androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:text="发送通知" androID:onClick="send" /></linearLayout>
activity_ring.xml
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:ID="@+ID/activity_ring" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:paddingBottom="@dimen/activity_vertical_margin" androID:paddingleft="@dimen/activity_horizontal_margin" androID:paddingRight="@dimen/activity_horizontal_margin" androID:paddingtop="@dimen/activity_vertical_margin" tools:context="com.example.g150825_androID28.RingActivity"> <button androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:text="停止" androID:onClick="stop" androID:ID="@+ID/button" androID:layout_alignParenttop="true" androID:layout_alignParentleft="true" androID:layout_alignParentStart="true" /> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="慈禧太后青霜来了,赶紧起床!" androID:ID="@+ID/textVIEw" androID:textSize="30sp" androID:layout_below="@+ID/button" androID:layout_centerHorizontal="true" androID:layout_margintop="36dp" /></relativeLayout>
RingActivity
package com.example.g150825_androID28;import androID.media.MediaPlayer;import androID.support.v7.app.AppCompatActivity;import androID.os.Bundle;import androID.vIEw.VIEw;public class RingActivity extends AppCompatActivity { private MediaPlayer mediaPlayer; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_ring); mediaPlayer = MediaPlayer.create(this,R.raw.sqbm); mediaPlayer.start(); } public voID stop(VIEw vIEw){ mediaPlayer.stop(); finish(); }}
MyReceiver
package com.example.g150825_androID28;import androID.content.broadcastReceiver;import androID.content.Context;import androID.content.Intent;import androID.Widget.Toast;public class MyReceiver extends broadcastReceiver { public MyReceiver() { } @OverrIDe public voID onReceive(Context context,Intent intent) { if("com.example.g150825_androID28.RING".equals(intent.getAction())){ Toast.makeText(context,"闹钟响了",Toast.LENGTH_SHORT).show(); //跳转到Activity Intent intent1=new Intent(context,RingActivity.class); //设置标志位(Flag) intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent1); } }}
清单文件(AndroIDManifest.xml)
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID" package="com.example.g150825_androID28"> <application androID:allowBackup="true" androID:icon="@mipmap/ic_launcher" androID:label="@string/app_name" androID:supportsRtl="true" androID:theme="@style/Apptheme"> <activity androID:name=".MainActivity"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver androID:name=".MyReceiver" androID:enabled="true" androID:exported="true"> <intent-filter> <action androID:name="com.example.g150825_androID28.RING" /> </intent-filter> </receiver> <activity androID:name=".RingActivity" androID:theme="@style/theme.AppCompat.Dialog" ></activity> </application></manifest>
以上所述是小编给大家介绍的AndroID 使用AlarmManager和notificationmanager来实现闹钟和通知栏,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!
总结以上是内存溢出为你收集整理的Android 使用AlarmManager和NotificationManager来实现闹钟和通知栏全部内容,希望文章能够帮你解决Android 使用AlarmManager和NotificationManager来实现闹钟和通知栏所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)