摘要: 我们在用手机的时候,如果来了短信,而我们没有点击查看的话,是不是在手机的最上边的状态栏里有一个短信的小图标提示啊?你是不是也想实现这种功能呢?今天的Notification就是解决这个问题的。package cn.com.chenzheng_java;import android.app.Activity;import android.app.Notification;import android.app.NotificationManager;import android.app.PendingIntent;import android.content.Context;import andr 阅读全文
posted @ 2012-11-19 18:09 似水流云 阅读(292) 评论(0) 推荐(0) 编辑
摘要: (一) 通话记录的插入。呼叫记录有三种类型: 来电:CallLog.Calls.INCOMING_TYPE (常量值:1)已拨:CallLog.Calls.OUTGOING_TYPE (常量值:2)未接:CallLog.Calls.MISSED_TYPE (常量值:3)插入通话记录的代码如下:private void insertCallLog(TriggerService triggerService, String string,String string2, String string3, String string4, long i){ // TODO Auto-generate... 阅读全文
posted @ 2012-11-19 17:25 似水流云 阅读(1363) 评论(0) 推荐(0) 编辑