19

我知道如何使用以下方法在android中使用反射打开/关闭wifi热点。

private static boolean changeWifiHotspotState(Context context,boolean enable) {
        try {
            WifiManager manager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
            Method method = manager.getClass().getDeclaredMethod("setWifiApEnabled", WifiConfiguration.class,
                    Boolean.TYPE);
            method.setAccessible(true);
            WifiConfiguration configuration = enable ? getWifiApConfiguration(manager) : null;
            boolean isSuccess = (Boolean) method.invoke(manager, configuration, enable);
            return isSuccess;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return false;
    }

但上述方法不适用于 Android 8.0(Oreo)。

当我在 Android 8.0 中执行上述方法时,我在 logcat 中得到以下语句。

com.gck.dummy W/WifiManager: com.gck.dummy attempted call to setWifiApEnabled: enabled = true

有没有其他方法可以在 android 8.0 上打开/关闭热点

4

3 回答 3

23

我认为这LocalOnlyHotspot条路线是通往的路,但正如@edsappfactory.com 在评论中所说 - 它只提供封闭的网络,没有互联网接入。

在 Oreo 中,热点/网络共享移至ConnectionManager,并对其进行了注释@SystemApi,因此(名义上)无法访问。

作为我正在做的其他事情的一部分,我制作了一个应用程序并将其放在github上。它使用反射来获取函数,并使用DexMaker生成一个子类ConnectionManager.OnStartTetheringCallback(这也是不可访问的)。

认为一切正常 - 边缘有点粗糙,所以请随时做得更好!

相关的代码位在:

我失去了耐心,试图让我的 DexMaker 生成的回调触发,MyOnStartTetheringCallback所以所有代码都处于混乱状态并被注释掉。

于 2018-03-19T05:20:02.357 回答
20

最后我得到了解决方案。Android 8.0,他们提供了公共 api 来打开/关闭热点。Wifi管理器

下面是开启热点的代码

private WifiManager.LocalOnlyHotspotReservation mReservation;

@RequiresApi(api = Build.VERSION_CODES.O)
private void turnOnHotspot() {
    WifiManager manager = (WifiManager) getApplicationContext().getSystemService(Context.WIFI_SERVICE);

    manager.startLocalOnlyHotspot(new WifiManager.LocalOnlyHotspotCallback() {

        @Override
        public void onStarted(WifiManager.LocalOnlyHotspotReservation reservation) {
            super.onStarted(reservation);
            Log.d(TAG, "Wifi Hotspot is on now");
            mReservation = reservation;
        }

        @Override
        public void onStopped() {
            super.onStopped();
            Log.d(TAG, "onStopped: ");
        }

        @Override
        public void onFailed(int reason) {
            super.onFailed(reason);
            Log.d(TAG, "onFailed: ");
        }
    }, new Handler());
}

private void turnOffHotspot() {
    if (mReservation != null) {
        mReservation.close();
    }
}

onStarted(WifiManager.LocalOnlyHotspotReservation reservation)如果打开热点,将调用方法。使用WifiManager.LocalOnlyHotspotReservation引用调用close()方法来关闭热点

注意: 要打开热点,Location(GPS)应该在设备中启用。否则会抛出SecurityException

于 2017-09-01T08:56:09.830 回答
3

根据 Jon 的建议,我找到了另一种在 Android Oreo 及更高版本中启用 WifiHotSpot 的方法。

public boolean enableTetheringNew(MyTetheringCallback callback) {
    File outputDir = mContext.getCodeCacheDir();
    try {
        proxy = ProxyBuilder.forClass(classOnStartTetheringCallback())
                .dexCache(outputDir).handler(new InvocationHandler() {
                    @Override
                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                       switch (method.getName()) {
                            case "onTetheringStarted":
                                callback.onTetheringStarted();
                                break;
                            case "onTetheringFailed":
                                callback.onTetheringFailed();
                                break;
                            default:
                                ProxyBuilder.callSuper(proxy, method, args);
                        }
                        return null;
                    }

                }).build();
    } catch (IOException e) {
        e.printStackTrace();
    }
    ConnectivityManager manager = (ConnectivityManager) mContext.getApplicationContext().getSystemService(ConnectivityManager.class);

    Method method = null;
    try {
        method = manager.getClass().getDeclaredMethod("startTethering", int.class, boolean.class, classOnStartTetheringCallback(), Handler.class);
        if (method == null) {
            Log.e(TAG, "startTetheringMethod is null");
        } else {
            method.invoke(manager, TETHERING_WIFI, false, proxy, null);

        }
        return true;
    } catch (NoSuchMethodException e) {
        e.printStackTrace();
    } catch (IllegalAccessException e) {
        e.printStackTrace();
    } catch (InvocationTargetException e) {
        e.printStackTrace();
    }
    return false;
}

private Class classOnStartTetheringCallback() {
    try {
        return Class.forName("android.net.ConnectivityManager$OnStartTetheringCallback");
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
    return null;
}
于 2018-09-07T09:47:38.510 回答