///// 第一步:获取NotificationManager
NotificationManager nm = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
///// 第二步:定义Notification
Intent intent = new Intent(this, Oth...
分类:
移动开发 时间:
2014-06-15 16:16:47
阅读次数:
182
1、网络设置
public void checkNetwork(){
//获取连接的管理对象
ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
//获取当前正在使用的网络
NetworkInfo networ...
分类:
其他好文 时间:
2014-06-08 16:40:31
阅读次数:
217
View view =
LayoutInflater.from(mContext).inflate(R.layout.song_item_adapter,
null);LayoutInflater inflater = (LayoutInflater)context.getSystemService...
分类:
移动开发 时间:
2014-05-29 00:32:23
阅读次数:
227
一、自动弹出软键盘Timertimer=newTimer();timer.schedule(newTimerTask(){publicvoidrun(){InputMethodManagerinputMethodManager=(InputMethodManager)getSystemService...
分类:
移动开发 时间:
2014-05-27 00:07:18
阅读次数:
434
在写Android程序时,有时候会编写自定义的View,使用Inflater对象来将布局文件解析成一个View。本文主要目的是总结获取LayoutInflater对象的方法。
1、若能获取context对象,可以有以下几种方法:
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYO...
分类:
移动开发 时间:
2014-05-24 18:12:21
阅读次数:
274
android获取屏幕的高度和宽度用到WindowManager这个类,两种方法:1、WindowManager
wm = (WindowManager) getContext() .getSystemService(Context.WINDOW_SERVICE...
分类:
移动开发 时间:
2014-05-23 11:21:22
阅读次数:
233
3.1、Service服务
Service类似Activity,实际上就是一个没有界面的Activity,而且默认不会随着程序关闭而关闭。
开发人员自定义的服务类一般用来完成一些安全软件的一些监听功能,以及消息提示,流氓软件的功能。
系统服务则是通过类似getSystemService()的方法来取得系统的一些服务管理类(XxxxManager),来调用系统处理好的功能完成自己需要的操作,...
分类:
移动开发 时间:
2014-05-22 09:33:54
阅读次数:
311
在android程序应用中经常会遇到点击返回键时提示再按一次退出程序。
要实现这个功能需要完成两点:
一、能够彻底退出程序
·之前看到有人用 finish();,其实这样做并不能真的退出程序,这样只是结束当前的Activity,一个程序中是可以有多个Activity的,在android可以彻底关闭进程的方法有好几种。
第一种:
// 获取当前进程的id
int p...
分类:
其他好文 时间:
2014-05-18 13:39:53
阅读次数:
245
Notification的用法 --- 状态栏通知
发送一个状态栏通知必须的两个类:
1. NotificationManager --- 状态栏通知的管理类,负责发通知,清除通知等
NotificationManager : 是一个系统Service,必须通过 context.getSystemService(NOTIFICATION_SERVICE...
分类:
移动开发 时间:
2014-05-18 09:13:46
阅读次数:
471
例如在用AlarmManager的时候 1 AlarmManager alarmMgr =
(AlarmManager) mContext 2 .getSystemService(Context.ALARM_SERVICE); 3 Intent
int...
分类:
移动开发 时间:
2014-05-15 17:40:14
阅读次数:
414