美文网首页安卓
android之getSystemService介绍

android之getSystemService介绍

作者: Lee_5566 | 来源:发表于2020-12-03 10:18 被阅读0次
    image.png

    android service

    android的后台运行在很多service,它们在系统启动时被SystemServer开启,支持系统的正常工作.

    比如MountService监听是否有SD卡安装及移除,ClipboardService提供剪切板功能,PackageManagerService提供软件包的安装移除及查看等 等,应用程序可以通过系统提供的Manager接口来访问这些Service提供的数据。

    image.png

    getSystemService是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象。

    使用getSystemService()获取系统服务,需要注意的是,总是使用上下文:

    context.getSystemService
    
    传入的Name 返回的对象 说明
    WINDOW_SERVICE WindowManager 管理打开的窗口程序
    LAYOUT_INFLATER_SERVICE LayoutInflater 取得xml里定义的view
    ACTIVITY_SERVICE ActivityManager 管理应用程序的系统状态
    POWER_SERVICE PowerManger 电源的服务
    ALARM_SERVICE AlarmManager 闹钟的服务
    NOTIFICATION_SERVICE NotificationManager 状态栏的服务
    KEYGUARD_SERVICE KeyguardManager 键盘锁的服务
    LOCATION_SERVICE LocationManager 位置的服务,如GPS
    SEARCH_SERVICE SearchManager 搜索的服务
    VEBRATOR_SERVICE Vebrator 手机震动的服务
    CONNECTIVITY_SERVICE Connectivity 网络连接的服务
    WIFI_SERVICE WifiManager Wi-Fi服务
    TELEPHONY_SERVICE TeleponyManager 电话服务

    实例代码

    获取网络状态:

    ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
    State mobile = manager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).getState();
    State wifi = manager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).getState();
    

    相关文章

      网友评论

        本文标题:android之getSystemService介绍

        本文链接:https://www.haomeiwen.com/subject/ezfxwktx.html