文件名称:电视盒子开机自启动wifi热点功能代码,貌似路由器都能省了
文件大小:1.39MB
文件格式:RAR
更新时间:2017-08-13 12:50:20
AndroidAP 电视盒子 AP 热点 路由器
http://blog.csdn.net/xiaoxiao108/article/details/31398127
现在用有线连网看视频速度要比经过路由器快,用无线做热点,但无线设置热点后,关机或重启又要再重新开启热点,这样比较麻烦,增加上开机自启热点,这样比较方便了,连网速度快看视频不卡其它设备也可以通过盒子上网。
开发工具
android ADT
实现方法
1.开启热点
2.开机启动
具体代码
1.开启热点
[java] view plaincopy在CODE上查看代码片派生到我的代码片
WifiManager wifiManager;
wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
Method method = wifiManager.getClass().getMethod("getWifiApState");
int state = (Integer) method.invoke(wifiManager);
if(state==13||state==12)// 已经开 或者 正在开
{
}else
{
Toast.makeText(MainActivity.this,"正在开启AndroidAP...", 1).show();
wifiManager.setWifiEnabled(false);
WifiConfiguration apConfig = new WifiConfiguration();
apConfig.SSID = "AndroidAP";
apConfig.allowedKeyManagement.set(4);
apConfig.preSharedKey = "5e8918f37260";
method = wifiManager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, Boolean.TYPE);
boolean open = (Boolean) method.invoke(wifiManager, apConfig, true);
}
AndroidManifest.xml 中增加权限
【文件预览】:
test9
----.project(808B)
----.DS_Store(6KB)
----project.properties(563B)
----src()
--------.DS_Store(6KB)
--------com()
----AndroidManifest.xml(1KB)
----res()
--------drawable-ldpi()
--------drawable-hdpi()
--------values-v11()
--------menu()
--------drawable-mdpi()
--------layout()
--------drawable-xxhdpi()
--------drawable-xhdpi()
--------values-w820dp()
--------values()
--------values-v14()
----.settings()
--------org.eclipse.core.resources.prefs(86B)
----assets()
----gen()
--------com()
----libs()
--------android-support-v4.jar(613KB)
----.classpath(466B)
----proguard-project.txt(781B)
----ic_launcher-web.png(50KB)
----bin()
--------resources.ap_(40KB)
--------classes()
--------AndroidManifest.xml(1KB)
--------dexedLibs()
--------jarlist.cache(120B)
--------res()
--------test9.apk(275KB)
--------classes.dex(679KB)