-
创建选项菜单的2种方式查看全部
-
设置通知参数步骤: 第一步:创建Builder对象(是notification的builder)并new出Notification.Builder(this),通过调用builder的方法来设置,setSmallIcon(R.drawable...),setTicker...; 第二步(点击后的响应):创建PendingIntent对象并赋值为PendingIntent.getActivity(context,requestCode,intent,flags): context:this; requestCode:请求码,0; intent:创建Intent对象,在new中根据需求选择构造的类.class; flags--0; 第三步:创建Notification对象,并将builder.build()赋值//4.1即以上,要用builder.build()方法,以下要用builder.getNotification()方法; 第四步:创建NotificationManager对象,因为是系统的常用服务,赋值为getSystemService(Context.NOTIFICATION_SERVICE),需强制转化;调用成员函数notify(id,notification)来加载Notification,id是一个int值,表示notification的id,自行赋值即可;查看全部
-
debug查看全部
-
log日志级别查看全部
-
logcat查看全部
-
AlertDialog常用方法查看全部
-
Toast常用方法查看全部
-
LogCat的作用查看全部
-
AlertDialog常用方法查看全部
-
完全自定义查看全部
-
带图片的Toast查看全部
-
Toast常用方法查看全部
-
LogCat查看全部
-
Debug查看全部
-
<menu <item public boolean onCreateOptionsMenu(Menu menu){ MenuInflater inflater = getMenuInflater(); inflater.inflate(R.menu.xxx,menu);查看全部
举报
0/150
提交
取消