
Android
文章平均质量分 62
manjhOK
这个作者很懒,什么都没留下…
展开
-
BroadcastReceiver
前言:这个月写的博客文章数量比较多,因为刚入门的缘故吧,多总结,由浅入深,等后面更深入了再给大家写续篇。学之广在于不倦,不倦在于固志。 ——晋·葛洪(学问的渊博在于学习时不知道厌倦,而学习不知厌倦在于有坚定的目标)一、概述BroadcastReceiver:直译是“广播接收者”,所以它的作用是用来接收发送过来的广播的。那我们转载 2017-11-11 21:30:07 · 240 阅读 · 0 评论 -
WIFI列表仅显示已连接WIFI的问题解决
WifiManager wifiManager = (WifiManager)context.getSystemService(Context.WIFI_SERVICE); if (!wifiManager.isWifiEnabled()) { wifiManager.setWifiEnabled(true); }wifiManager.startS原创 2017-11-13 11:12:14 · 1019 阅读 · 1 评论 -
安卓传感器+WIFI+GPS
package com.cnlgming.sensorsdemo;import android.Manifest;import android.app.PendingIntent;import android.content.Context;import android.content.Intent;import android.content.pm.PackageManager;i原创 2017-11-27 16:26:18 · 476 阅读 · 0 评论 -
androidStudio开发过程中,手机页面提示出Permission denied错误的解决办法
利用真机进行androidStudio开发过程中,手机页面提示出Permission denied的错误原创 2017-11-06 15:20:15 · 10026 阅读 · 0 评论 -
安卓传感器+WIFI
package com.cnlgming.sensorsdemo;import android.app.PendingIntent;import android.content.Context;import android.content.Intent;import android.hardware.Sensor;import android.hardware.SensorEvent;原创 2017-11-27 16:28:38 · 533 阅读 · 0 评论 -
安卓传感器+WIFI,WIFI写在外部,时间可控
package com.cnlgming.sensorsdemo;import android.app.PendingIntent;import android.content.Context;import android.content.Intent;import android.hardware.Sensor;import android.hardware.SensorEvent;原创 2017-11-27 16:32:59 · 1253 阅读 · 0 评论