Andriod Notification


    notification(通知)就是手机上面的弹出框。

 NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
 Notification notification = new NotificationCompat.Builder(MainActivity.this).build();
 notificationManager.notify(1, notification);

想要什么效果的话就在.build()前面加上函数


public class MainActivity extends AppCompatActivity {

    public Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        button = (Button)findViewById(R.id.button);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent intent = new Intent(MainActivity.this, lbj.class);
                PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, 0);
                NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
                Notification notification = new NotificationCompat.Builder(MainActivity.this)
                        .setSmallIcon(R.mipmap.ic_launcher)
                        .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher_round))
                        .setContentTitle("骑士总冠军!")//通知框的题目
                        .setAutoCancel(true)//点击后自动删除
                        //如果内容过长,会多行显示
                       //.setStyle(new NotificationCompat.BigTextStyle().bigText("首节上来,骑士状态低迷,公牛则率先发力,连续三次攻击内线得手。詹姆斯强攻篮下打成2+1,帮骑士开胡。之后,客队攻势有了起色,本节中段,JR-史密斯跳投打板得分,乐福三分也进,骑士实现反超。公牛并未慌张,瓦伦丁、波蒂斯三分连中,将比分咬住。可防守端,公牛却漏洞明显。詹姆斯助攻格林跳投入网,又亲自出手跳投得分,单节打完,骑士29-22暂时领先。"))
                        // 内容长的话多出来的是省略号
                        .setContentText("首节上来,骑士状态低迷,勇士则率先发力,连续三次攻击内线得手。詹姆斯强攻篮下打成2+1,帮骑士开胡。之后,客队攻势有了起色,本节中段,JR-史密斯跳投打板得分,乐福三分也进,骑士实现反超。勇士并未慌张,杜兰特三分连中,将比分咬住。可防守端,勇士却漏洞明显。詹姆斯助攻格林跳投入网,又亲自出手跳投得分,单节打完,骑士29-22暂时领先。")
                        //  实现页面跳转
                        .setContentIntent(pendingIntent)
                        //播放音乐
                        //.setSound(Uri.fromFile(new File("/storage/emulated/0/kgmusic/download/1.mp3")))
                        //设置呼吸灯,没有出现预期效果
                        //.setLights(Color.GREEN, 1000, 20)
                        .setStyle(new NotificationCompat.BigPictureStyle().bigPicture(BitmapFactory.decodeResource(getResources(), R.drawable.lbj)))
                        //设置成默认模式的声音与振动
                        .setDefaults(Notification.DEFAULT_ALL)
                        //priority 优先权
                        //优先权设置成最高,但是没有出现预期的弹出效果
                        .setPriority(NotificationCompat.PRIORITY_MAX)
                        .build();
                notificationManager.notify(1, notification);
            }
        });
    }
}



 具体参见 http://www.android-doc.com/reference/android/app/Notification.Builder.html 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值