美文网首页
getSystemService

getSystemService

作者: HOLLE_karry | 来源:发表于2020-06-06 10:29 被阅读0次

    1.getSystemService

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

    2. 系统管理器简介

    • @see #WINDOW_SERVICE
    • @see android.view.WindowManager // 窗口管理器
    • @see #LAYOUT_INFLATER_SERVICE
    • @see android.view.LayoutInflater //布局管理器
    • @see #ACTIVITY_SERVICE
    • @see android.app.ActivityManager // 活动管理器
    • @see #POWER_SERVICE
    • @see android.os.PowerManager // 电源管理器
    • @see #ALARM_SERVICE
    • @see android.app.AlarmManager // 闹钟管理器
    • @see #NOTIFICATION_SERVICE
    • @see android.app.NotificationManager // 通知管理器
    • @see #KEYGUARD_SERVICE
    • @see android.app.KeyguardManager // 锁屏管理器
    • @see #LOCATION_SERVICE
    • @see android.location.LocationManager // 位置管理器
    • @see #SEARCH_SERVICE
    • @see android.app.SearchManager // 搜索管理器
    • @see #SENSOR_SERVICE
    • @see android.hardware.SensorManager // 传感器管理器
    • @see #STORAGE_SERVICE
    • @see android.os.storage.StorageManager // 存储卡管理器
    • @see #VIBRATOR_SERVICE
    • @see android.os.Vibrator // 震动管理器
    • @see #CONNECTIVITY_SERVICE
    • @see android.net.ConnectivityManager // 连接管理器
    • @see #WIFI_SERVICE
    • @see android.net.wifi.WifiManager // WiFi管理器
    • @see #AUDIO_SERVICE
    • @see android.media.AudioManager // 音频管理器
    • @see #MEDIA_ROUTER_SERVICE
    • @see android.media.MediaRouter // 媒体路由管理器
    • @see #TELEPHONY_SERVICE
    • @see android.telephony.TelephonyManager // 电话管理器
    • @see #TELEPHONY_SUBSCRIPTION_SERVICE
    • @see android.telephony.SubscriptionManager // 订阅管理器
    • @see #CARRIER_CONFIG_SERVICE
    • @see android.telephony.CarrierConfigManager// 运营商配置管理器
    • @see #INPUT_METHOD_SERVICE
    • @see android.view.inputmethod.InputMethodManager//输入法管理器
    • @see #UI_MODE_SERVICE
    • @see android.app.UiModeManager// 窗口管理器
    • @see #DOWNLOAD_SERVICE
    • @see android.app.DownloadManager// 下载管理器
    • @see #BATTERY_SERVICE
    • @see android.os.BatteryManager// 电源管理器
    • @see #JOB_SCHEDULER_SERVICE
    • @see android.app.job.JobScheduler// 线程调度管理器
    • @see #NETWORK_STATS_SERVICE
    • @see android.app.usage.NetworkStatsManager
    • @see android.os.HardwarePropertiesManager
    • @see #HARDWARE_PROPERTIES_SERVICE

    相关文章

      网友评论

          本文标题:getSystemService

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