zoukankan      html  css  js  c++  java
  • 通知Notification

    步骤:

      1、调用getSystemService()获取NotificationManager:NotificationManager manager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

      2、创建Notification对象:Notification notification = new Notification(R.drawable.icon,"This is ticker text",System.currentTimeMillis());

      3、创建布局:用builder的一系列相关方法替代,必要的属性包括setContentTitle()、setCotentText()、setSmallIcon()

      4、显示通知:调用notify():manager.notify(1,notification);

    实现点击效果:pendingIntent,在某个合适的时机去执行某个动作

      创建对象:getActivity()、getBroadcast()、getService()

    1 ......
    2     Intent intent = new Intent(this,NotificationActivity.class);
    3     PendingIntent pi = PendingIntent.getActivity(this,0,intent,PendingIntent,FLAG_CANCEL_CURRENT);
    4     Notification.setLatestEcentInfo(this,"This is conent title","This is content text",pi);

    取消通知:调用NotificationManager的cancel():NotificationManager manager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

                            manager.cancel(1);

    通知的高级技巧:

      1、sound:Uri soundUri = Uri.fromFile(new File("/system/media/audio/ringtones/Baseic_tone.ogg"));

         notification.sound = soundUri;

      2、vibrate(震动,需要声明权限):long[] vibrates = {0,1000,1000,1000};  //立刻震动1秒,静止1秒,再震动1秒

                 notification.vibrate = vibrates;

      3、ledARGB、ledOnMS、ledOffMS、flag(led灯)

    收发短信:

      收短信:1、创建广播接收器  2、注册  3、声明权限  

      发短信:1、设置监听器  2、声明权限

      超出长度:调用SMSManager的sendMultipart-TextMessage()

    调用摄像头:

      1、创建一个File对象,并将拍下的照片存储在SD卡中:File outputImage = new File(Environment.getExternalStorageDirectory(),"名称");

      2、将File对象转化为Uri:imageUri = Uri.formFile(outputImage);

      3、通过intent保存Uri地址:Intent.putExtra(MediaStore.EXTRA_OUTPUT,imageUri);

      4、调用startActivityForResult(intent,TAKE_PHOTO)启动相机

      5、在onActivityResult()中裁剪图片:通过intent对象,并调用startActivityForResult(intent,CROP_PHOTO)启动裁剪程序

      6、通过BitmapFactory的decodeStream()方法将照片解析成Bitmap对象

      7、设置到ImageView中显示:setImageBitmap(bitmap)

    从相册中选择:

      在startActivityForResult(intent,CHOOSE_PHOTO)中打开相册,并判断手机系统版本,如果4.4以上解析封装过Uri;如果是4.4以下直接传入Uri到getImagePath()即可。之后再调用displayImage()显示图片。

    播放音频:MediaPlayer

      方法:setDataSource()、prapare()、start()、pause()、reset()、seekTo()、stop()、release()、isPlaying()、getDuration()

      步骤:1、创建MediaPlayer对象  

         2、调用setDataSource()设置文件路径

         3、调用prepare()进入准备状态

         4、调用start()方法播放

         5、调用pause()暂停播放

         6、调用reset()停止播放

    播放视频:VideoView

      方法:setVideoPath()、start()、pause()、resume()、seekTo()、isPlaying()、getDuration()

  • 相关阅读:
    监督学习——决策树理论与实践(上):分类决策树
    监督学习——随机梯度下降算法(sgd)和批梯度下降算法(bgd)
    Protobuf 从入门到实战
    Android 广播机制
    Java 并发编程——volatile/synchronized
    Android 手势识别—缩放
    Jquery 使用和Jquery选择器
    初识jQuery
    正则表达式
    正则表达式
  • 原文地址:https://www.cnblogs.com/yl-saber/p/6133326.html
Copyright © 2011-2022 走看看