android 热点 自动关闭,Android8.1打开关闭热点简单记录

首先确认ConnectivityService中的startTethering和stopTethering这两个函数中的的参数。例如我目前手上的设备使用的源码如下。

@Override

public void startTethering(int type, ResultReceiver receiver, boolean showProvisioningUi,

String callerPkg) {

ConnectivityManager.enforceTetherChangePermission(mContext, callerPkg);

if (!isTetheringSupported()) {

receiver.send(ConnectivityManager.TETHER_ERROR_UNSUPPORTED, null);

return;

}

mTethering.startTethering(type, receiver, showProvisioningUi);

}

@Override

public void stopTethering(int type, String callerPkg) {

ConnectivityManager.enforceTetherChangePermission(mContext, callerPkg);

mTethering.stopTethering(type);

}

由于源码中是startTethering(int type, ResultReceiver receiver, boolean showProvisioningUi, String callerPkg),所以调用getMethod("startTethering", int.class, ResultReceiver.class, boolean.class,String.class);;

public static void setWifiApEnabledForAndroidO(Context context, boolean isEnable){

ConnectivityManager connManager = (ConnectivityManager) context.getApplicationContext().getSystemService(Context.CONNECTIVITY_SERVICE);

Field iConnMgrField = null;

try {

iConnMgrField = connManager.getClass().getDeclaredField("mService");

iConnMgrField.setAccessible(true);

Object iConnMgr = iConnMgrField.get(connManager);

Class> iConnMgrClass = Class.forName(iConnMgr.getClass().getName());

if(isEnable){

Method startTethering = iConnMgrClass.getMethod("startTethering", int.class, ResultReceiver.class, boolean.class,String.class);

startTethering.invoke(iConnMgr, 0, null, true,context.getPackageName());

}else{

Method startTethering = iConnMgrClass.getMethod("stopTethering", int.class,String.class);

startTethering.invoke(iConnMgr, 0,context.getPackageName());

}

} catch (NoSuchFieldException e) {

e.printStackTrace();

} catch (NoSuchMethodException e) {

e.printStackTrace();

} catch (IllegalAccessException e) {

e.printStackTrace();

} catch (InvocationTargetException e) {

e.printStackTrace();

} catch (ClassNotFoundException e) {

e.printStackTrace();

}

}

package="com.android.test.myapplication"

android:sharedUserId="android.uid.system"

>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值