Android提供了一系列的API,是我们可以在程序中调用很多手机的多媒体资源,从而编写出更加丰富的应用程序。
1、通知的使用
通知(Notification)是Android中比较有特色的一个功能,当某个应用程序希望向用户发出一些提示信息,而该应用程序又不在前台运行时,就可以借助通知来实现。发出一条通知后,手机最上方的状态栏中会显示一个通知的图标,下拉状态栏后可以看到通知的详细内容。
无论在哪里创建通知,整体的步骤都是相同的,具体的步骤如下:
- 创建一个NotificationManager类的对象来对通知进行管理,这里可以通过Context的getSystemService(Context.NOTIFICATION_SERVICE)方法获取到。
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE) ;
- 接下来我们需要创建一个Notification对象,这个对象用于存储通知所需的各种信息,我们可以用其有参构造函数来进行创建。并对其相关参数进行设置
Notification notification = new Notification(R.drawable.ic_launcher, "this is ticker text", java.lang.System.currentTimeMillis()) ;
notification.setLatestEventInfo(this, "this is the title", "this is content text", null); - 然后我们通过NotificationManager的notify(int id, Notification notification)方法将通知对象发送出去。这样我们发送通知的功能就完成了。
manager.notify(1,notification);
- 最后,我们可以通过PendingIntent来实现点击通知后的效果。PendingIntent和Intent的功能非常相似,不同的是Intent是立即执行跳转活动,而PendingIntent则更加倾向于在某个合适的实际去执行动作。关于两者之间的区别详细可以参见:Intent和PendingIntent的区别。我们一般通过其静态方法getActivity()方法、getBroadcast()方法、getService()方法来获取Pendingintent的实例
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE) ;
Notification notification = new Notification(R.drawable.ic_launcher, "this is ticker text", java.lang.System.currentTimeMillis()) ; //为通知的添加点击效果
Intent intent = new Intent(this,NotificationActivity.class) ;
PendingIntent pi = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT) ; notification.setLatestEventInfo(this, "this is the title", "this is content text", pi);
manager.notify(1,notification);就这样,我们通过点击通知的小图标就可以跳转到NotificaitonActivity活动中去了。
- 跳转到新的活动中去了之后,我们要调用NotificationManager的cancel(int id)方法来取消通知,从而取消那个图标
public class NotificationActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notification);
//取消通知,否则跳转过来之后通知仍然存在
NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE) ;
manager.cancel(1) ;
}
}
此外,我们还可以通过Noification的属性sound、vibrate、ledARGB等来设置通知到达时的铃声、震动以及前置LED灯的闪烁等。具体参数的设置方法参见:Android中通知的使用-----Notification详解
2、接收和发送短信
收发短信是手机最基本的功能之一了,每个Android手机都会内置一个短信的应用程序,我们使用它就可以轻松完成收发短信的操作了。但是我们也可以自己写相关的应用程序实现这样的功能。也可以具体参见:Android实战技巧之三十九:短信收发。
- 发送短信:这一功能实际上很简单,只用调用SmsManager的sendTextMessage()方法就可以将短信发送出去,当然,这个方法接收好几个参数,具体的有电话号码,短信内容,等等,当然,我们还可以通过注册一个广播接收器来获取短信发送成功还是失败,详细的用法参见: android中发送短信
-
接收短信:实际上,每当有短信到来时,系统会接收到一条相应的广播,所以对于接收短信的功能,我们只需要实现一个广播接收器就可以了,在重写onReceive()方法中来处理接收到的信息。信息的相关内容都封装在传进来的Intent中,可以按照下面的方法进行提取:
class MesssageReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras() ;
//提取短信消息
Object [] pdus = (Object[]) bundle.get("pdus") ;
SmsMessage [] messages = new SmsMessage [pdus.length] ;
for(int i = 0 ; i < pdus.length ; i++){
messages[i] = SmsMessage.createFromPdu((byte[]) pdus[i]) ;
}
//提取发送号码
String address = messages[0].getDisplayOriginatingAddress() ;
String fullMessage = "" ;
//获取发送内容
for(SmsMessage msg : messages){
fullMessage += msg.getMessageBody() ;
}
//显示出来
sender.setText(address);
content.setText(fullMessage);
} }
3、调用摄像头和相册