错误: 不兼容的类型: 匿名OnClickListener无法转换为Context

public class MyFragment4 extends Fragment {

    private Button btn;

    public MyFragment4() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fg_content4, container, false);
        btn = (Button) view.findViewById(R.id.send_not);
        btn.setText("发送通知");
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Log.e("HEHE", "哈哈");
                NotificationManager notificationManager =
                        (NotificationManager)(MyFragment4.this.getContext().getSystemService(Context.NOTIFICATION_SERVICE));
                Notification.Builder mBuilder = new Notification.Builder(this); // 错误在this这里
                mBuilder.setContentTitle("叶良辰")                        //标题
                        .setContentText("我有一百种方法让你呆不下去~")      //内容
                        .setSubText("——记住我叫叶良辰")                    //内容下面的一小段文字
                        .setTicker("收到叶良辰发送过来的信息~")             //收到信息后状态栏显示的文字信息
                        .setWhen(System.currentTimeMillis())           //设置通知时间
                        .setSmallIcon(R.mipmap.ic_launcher)            //设置小图标
                        .setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE)    //设置默认的三色灯与振动器
                        .setAutoCancel(true);                           //设置点击后取消Notification
                Notification notification = mBuilder.build();
                notificationManager.notify(1, notification);

            }
        });

        Log.e("HEHE", "4日狗");

        return view;
    }
}

运行报错:错误: 不兼容的类型: <匿名OnClickListener>无法转换为Context

传的明明是个Fragment,当然转不了,调Fragment的getContext方法获取

将:

Notification.Builder mBuilder = new Notification.Builder(this); // 错误在this这里

替换为:

Notification.Builder mBuilder = new Notification.Builder(MyFragment4.this.getContext());

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值