码迷,mamicode.com
首页 >  
搜索关键字:getsystemservice    ( 396个结果
获得当前正在显示的activity的类名
需要加一个权限: ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); List runningTasks = manager .getRunningTasks(1);...
分类:其他好文   时间:2014-07-21 00:15:59    阅读次数:212
Android中查看服务是否开启的工具类
这个也是昨天学习的,做下总结。 检查服务是否开启要写成一个工具类,方便使用,传服务的名字返回Boolean值,当然,因为需要,还要传一个上下文context。 说一下这个工具类的几个关键点: 1.方法要传context和serviceName,context用来getSystemService()操作获得ActivityManager。注意,这个方法参数要用大写的Context中的参数:Context.ACTIVITY_SERVICE,要不然会出错,还不知道哪错的,花了我10分钟的时间才知道,谨记下。 2....
分类:移动开发   时间:2014-07-20 10:28:16    阅读次数:200
Xamarin.Android通知详解
一、发送通知的机制在日常的app应用中经常需要使用通知,因为服务、广播后台活动如果有事件需要通知用户,则需要通过通知栏显示,而在Xamarin.Android下的通知需要获取NotificationManager服务,而该服务需要通过GetSystemService获取,同时还要传递一个标识符。获取...
分类:移动开发   时间:2014-07-16 19:41:53    阅读次数:515
android中getSystemService详解
http://blog.sina.com.cn/s/blog_71d1e4fc0100o8qr.htmlhttp://blog.csdn.net/bianhaohui/article/details/6220135 android的后台运行在很多service,它们在系统启动时被SystemServ...
分类:移动开发   时间:2014-07-16 19:09:05    阅读次数:388
Android如何获取SIM卡信息
android 获取sim卡运营商信息TelephonyManager tm = (TelephonyManager)Context.getSystemService(Context.TELEPHONY_SERVICE); TelephonyManager 的使用 TelephonyManager ...
分类:移动开发   时间:2014-07-15 23:54:06    阅读次数:626
Android获取手机信息
做手机开发,想必都希望获取手机号码吧,android中有一个类android.telephony.TelephonyManager提供这个功能。TelephonyManager tm = (TelephonyManager)this.getSystemService(Context.TELEPHON...
分类:移动开发   时间:2014-07-14 09:43:34    阅读次数:505
真机测试报错ERROR/AndroidRuntime: java.lang.RuntimeException: setParameters failed解决办法
这个错误是和调用相机摄像头相关的。产生这个错误的原因主要在于代码控制分辨率的显示和真机测试分辨率不一样。 一:解决办法WindowManager wm = (WindowManager) getSystemService(Context.WINDOW_SERVICE);Display display...
分类:移动开发   时间:2014-07-11 23:59:27    阅读次数:418
android 的通知管理
1在context里定义通知管理器(NotificationManager)NotificationManager notificationManager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE);2...
分类:移动开发   时间:2014-07-11 18:54:49    阅读次数:168
android获取手机信息大全
IMEI号,IESI号,手机型号:[java]private void getInfo() { TelephonyManager mTm = (TelephonyManager) getSystemService(TELEPHONY_SERVICE); String im...
分类:移动开发   时间:2014-07-09 16:28:48    阅读次数:216
android 判断网络连接、sim卡信息以及ping操作是否网络连接正常
//判断是否为wifi连接 publicbooleanisWifiConnected(Contextcontext){ if(context!=null){ ConnectivityManagermConnectivityManager=(ConnectivityManager)context .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfomWiFiNetworkInfo=mConnectivityManager .get..
分类:移动开发   时间:2014-07-01 09:43:03    阅读次数:245
396条   上一页 1 ... 35 36 37 38 39 40 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!