码迷,mamicode.com
首页 > 其他好文 > 详细

getSystemService的使用示例

时间:2015-01-07 09:26:52      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:android   getsystemservice   

1.设备管理器 硬件服务

// 拿到一个设备管理器
		DevicePolicyManager devicePolicyManager = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
		// new一个新的组件出来,用来启动注册管理器的界面
		ComponentName componentName = new ComponentName(this,
				MyAdminReceiver.class);
		// 判断是否已经注册,没有就进行注册
		if (!devicePolicyManager.isAdminActive(componentName))
		{
			Intent intent = new Intent(
					DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
			intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN,
					componentName);
			startActivity(intent);
		}


getSystemService的使用示例

标签:android   getsystemservice   

原文地址:http://blog.csdn.net/zqs62761130/article/details/42472651

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!