web-dev-qa-db-ja.com

Android WiFi HotSpotをプログラムでオン/オフにする

AndroidプログラムでWiFi HotSpotのオン/オフを切り替えるAPIはありますか?

オン/オフを切り替えるには、どのメソッドを呼び出す必要がありますか?

更新:HotSpotを有効にし、WiFiのオン/オフを切り替えるこのオプションがありますが、これは私にとっては良い解決策ではありません。

53
mxg

以下のクラスを使用して、Wifi hotspot設定:

import Android.content.*;
import Android.net.wifi.*;
import Java.lang.reflect.*;

public class ApManager {

//check whether wifi hotspot on or off
public static boolean isApOn(Context context) {
    WifiManager wifimanager = (WifiManager) context.getSystemService(context.WIFI_SERVICE);     
    try {
        Method method = wifimanager.getClass().getDeclaredMethod("isWifiApEnabled");
        method.setAccessible(true);
        return (Boolean) method.invoke(wifimanager);
    }
    catch (Throwable ignored) {}
    return false;
}

// toggle wifi hotspot on or off
public static boolean configApState(Context context) {
    WifiManager wifimanager = (WifiManager) context.getSystemService(context.WIFI_SERVICE);
    WifiConfiguration wificonfiguration = null;
    try {  
        // if WiFi is on, turn it off
        if(isApOn(context)) {               
            wifimanager.setWifiEnabled(false);
        }               
        Method method = wifimanager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);                   
        method.invoke(wifimanager, wificonfiguration, !isApOn(context));
        return true;
    } 
    catch (Exception e) {
        e.printStackTrace();
    }       
    return false;
}
} // end of class

以下の権限をAndroidMainfestに追加する必要があります:

<uses-permission Android:name="Android.permission.CHANGE_NETWORK_STATE" />
<uses-permission Android:name="Android.permission.CHANGE_WIFI_STATE" />
<uses-permission Android:name="Android.permission.ACCESS_WIFI_STATE" />

次のように、このスタンドアロンApManagerクラスをどこからでも使用します:

ApManager.isApOn(YourActivity.this); // check Ap state :boolean
ApManager.configApState(YourActivity.this); // change Ap state :boolean

これが誰かを助けることを願っています

52
Ashish Sahu

WiFiホットスポット機能に関連するAndroid SDKにはメソッドがありません-申し訳ありません!

8
CommonsWare

次のコードを使用して、wifiダイレクト状態をプログラムで有効化、無効化、およびクエリできます。

package com.kusmezer.androidhelper.networking;

import Java.lang.reflect.Method;
import com.google.common.base.Preconditions;
import Android.content.Context;
import Android.net.wifi.WifiConfiguration;
import Android.net.wifi.WifiManager;
import Android.util.Log;

public final class WifiApManager {
      private static final int WIFI_AP_STATE_FAILED = 4;
      private final WifiManager mWifiManager;
      private final String TAG = "Wifi Access Manager";
      private Method wifiControlMethod;
      private Method wifiApConfigurationMethod;
      private Method wifiApState;

      public WifiApManager(Context context) throws SecurityException, NoSuchMethodException {
       context = Preconditions.checkNotNull(context);
       mWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
       wifiControlMethod = mWifiManager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class,boolean.class);
       wifiApConfigurationMethod = mWifiManager.getClass().getMethod("getWifiApConfiguration",null);
       wifiApState = mWifiManager.getClass().getMethod("getWifiApState");
      }   
      public boolean setWifiApState(WifiConfiguration config, boolean enabled) {
       config = Preconditions.checkNotNull(config);
       try {
        if (enabled) {
            mWifiManager.setWifiEnabled(!enabled);
        }
        return (Boolean) wifiControlMethod.invoke(mWifiManager, config, enabled);
       } catch (Exception e) {
        Log.e(TAG, "", e);
        return false;
       }
      }
      public WifiConfiguration getWifiApConfiguration()
      {
          try{
              return (WifiConfiguration)wifiApConfigurationMethod.invoke(mWifiManager, null);
          }
          catch(Exception e)
          {
              return null;
          }
      }
      public int getWifiApState() {
       try {
            return (Integer)wifiApState.invoke(mWifiManager);
       } catch (Exception e) {
        Log.e(TAG, "", e);
            return WIFI_AP_STATE_FAILED;
       }
      }
}
4
Kerem Kusmezer

Android 8.0には、ホットスポットを処理する新しいAPIがあります。私の知る限り、リフレクションを使用した古い方法はもう機能しません。参照してください:

Android開発者 https://developer.Android.com/reference/Android/net/wifi/WifiManager.html#startLocalOnlyHotspot(Android.net.wifi.WifiManager.LocalOnlyHotspotCallback、%20Android.os.Handler)

void startLocalOnlyHotspot (WifiManager.LocalOnlyHotspotCallback callback, 
                Handler handler)

作成されたWiFiホットスポットに接続された同じ場所にあるデバイス間で通信するためにアプリケーションが使用できるローカルのみのホットスポットを要求します。この方法で作成されたネットワークは、インターネットにアクセスできません。

スタックオーバーフロー
Android 8.0(Oreo)でプログラムでwifiホットスポットをオン/オフにする方法

onStarted(WifiManager.LocalOnlyHotspotReservation reservation)メソッドは、ホットスポットがオンになっている場合に呼び出されます。WifiManager.LocalOnlyHotspotReservation参照を使用して、close()メソッドを呼び出してホットスポットをオフにします。

3
Sócrates Costa

あなたの最善の策は、WifiManagerクラスを見ることです。特にsetWifiEnabled(bool)関数。

次のドキュメントを参照してください: http://developer.Android.com/reference/Android/net/wifi/WifiManager.html#setWifiEnabled(boolean)

使用方法のチュートリアル(必要なアクセス許可を含む)は、ここにあります: http://www.tutorialforandroid.com/2009/10/turn-off-turn-on-wifi-in-Android -using.html

2
joshhendo

これは私にとってうまくいきます:

WifiConfiguration apConfig = null;
Method method = wifimanager.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, Boolean.TYPE);
method.invoke(wifimanager, apConfig, true);
1
Carlyle_Lee

私は非公式のapiを公開しています。ホットスポットターン以上のものが含まれていますon/offリンク

APIの場合DOC- link

1

Androidアプリでwifiホットスポット機能をプログラムで実装する場合の完全なソリューションを次に示します。

API <26のソリューション:

API 26未満のデバイスの場合:Androidこの目的のためのパブリックAPIはありません。これらのAPIを使用するには、プライベートAPIにreflection。推奨されませんが、他にオプションが残っていない場合は、ここにトリックがあります。

まず、マニフェストにこの許可が必要です。

  <uses-permission  
  Android:name="Android.permission.WRITE_SETTINGS"  
  tools:ignore="ProtectedPermissions"/>

  <uses-permission Android:name="Android.permission.ACCESS_NETWORK_STATE"/>
  <uses-permission Android:name="Android.permission.CHANGE_WIFI_STATE"/>
  <uses-permission Android:name="Android.permission.ACCESS_WIFI_STATE"/>

実行時に確認する方法は次のとおりです。

 private boolean showWritePermissionSettings() {    
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M  
    && Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { 
  if (!Settings.System.canWrite(this)) {    
    Log.v("DANG", " " + !Settings.System.canWrite(this));   
    Intent intent = new Intent(Android.provider.Settings.ACTION_MANAGE_WRITE_SETTINGS); 
    intent.setData(Uri.parse("package:" + this.getPackageName()));  
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
    this.startActivity(intent); 
    return false;   
  } 
}   
return true; //Permission already given 
}

その後、リフレクションを介してsetWifiEnabledメソッドにアクセスできます。これは、要求したアクションが正しく処理されている場合、つまりホットスポットを有効/無効にしている場合にtrueを返します。

     public boolean setWifiEnabled(WifiConfiguration wifiConfig, boolean enabled) { 
 WifiManager wifiManager;
try {   
  if (enabled) { //disables wifi hotspot if it's already enabled    
    wifiManager.setWifiEnabled(false);  
  } 

   Method method = wifiManager.getClass()   
      .getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);   
  return (Boolean) method.invoke(wifiManager, wifiConfig, enabled); 
} catch (Exception e) { 
  Log.e(this.getClass().toString(), "", e); 
  return false; 
}   
}

また、リフレクションを介してホットスポットの無線LAN構成を取得することもできます。 回答済み StackOverflowでのこの質問の方法。

PS:ホットスポットをプログラムでオンにしたくない場合は、この intent を開始し、ユーザーが手動でオンにするためにWiFi設定画面を開くことができます。

APIのソリューション> = 26:

最後に、Androidバージョンの公式APIをリリースしました> = Oreo。公開されたAPIは、Androidつまり startLocalOnlyHotspot

インターネットアクセスなしでローカルホットスポットをオンにします。したがって、サーバーのホストまたはファイルの転送に使用できます。

Manifest.permission.CHANGE_WIFI_STATEおよびACCESS_FINE_LOCATION権限が必要です。

このAPIを使用してホットスポットを有効にする方法の簡単な例を次に示します。

private WifiManager wifiManager;
WifiConfiguration currentConfig;
WifiManager.LocalOnlyHotspotReservation hotspotReservation;

ホットスポットをオンにする方法:

@RequiresApi(api = Build.VERSION_CODES.O)
public void turnOnHotspot() {

      wifiManager.startLocalOnlyHotspot(new WifiManager.LocalOnlyHotspotCallback() {

        @Override
        public void onStarted(WifiManager.LocalOnlyHotspotReservation reservation) {
          super.onStarted(reservation);
          hotspotReservation = reservation;
          currentConfig = hotspotReservation.getWifiConfiguration();

          Log.v("DANG", "THE PASSWORD IS: "
              + currentConfig.preSharedKey
              + " \n SSID is : "
              + currentConfig.SSID);

          hotspotDetailsDialog();

        }

        @Override
        public void onStopped() {
          super.onStopped();
          Log.v("DANG", "Local Hotspot Stopped");
        }

        @Override
        public void onFailed(int reason) {
          super.onFailed(reason);
          Log.v("DANG", "Local Hotspot failed to start");
        }
      }, new Handler());
    }
`

ローカルに作成されたホットスポットの詳細を取得する方法は次のとおりです

private void hotspotDetaisDialog()
{

    Log.v(TAG, context.getString(R.string.hotspot_details_message) + "\n" + context.getString(
              R.string.hotspot_ssid_label) + " " + currentConfig.SSID + "\n" + context.getString(
              R.string.hotspot_pass_label) + " " + currentConfig.preSharedKey);

}

必要なアクセス許可を与えた後でもセキュリティ例外がスローされる場合は、GPSを使用して現在地を有効にしてみてください。 ソリューション です。

最近、 Spotserve と呼ばれるデモアプリを開発しました。これにより、API> = 15のすべてのデバイスでwifiホットスポットがオンになり、そのホットスポットでデモサーバーがホストされます。詳細を確認してください。お役に立てれば!

0
Adeel Zafar

** OreoとPIEの場合**以下の方法で見つけました これを介して

private WifiManager.LocalOnlyHotspotReservation mReservation;
private boolean isHotspotEnabled = false;
private final int REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS = 101;

private boolean isLocationPermissionEnable() {
    if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        ActivityCompat.requestPermissions(this, new String[] {Manifest.permission.ACCESS_COARSE_LOCATION}, 2);
        return false;
    }
    return true;
}

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

    if (manager != null) {
        // Don't start when it started (existed)
        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;
                isHotspotEnabled = true;
            }

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

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

@RequiresApi(api = Build.VERSION_CODES.O)
private void turnOffHotspot() {
    if (!isLocationPermissionEnable()) {
        return;
    }
    if (mReservation != null) {
        mReservation.close();
        isHotspotEnabled = false;
    }
}

@RequiresApi(api = Build.VERSION_CODES.O)
private void toggleHotspot() {
    if (!isHotspotEnabled) {
        turnOnHotspot();
    } else {
        turnOffHotspot();
    }
}

@RequiresApi(api = Build.VERSION_CODES.O)
private void enableLocationSettings() {
    LocationRequest mLocationRequest = new LocationRequest();
    /*mLocationRequest.setInterval(10);
    mLocationRequest.setSmallestDisplacement(10);
    mLocationRequest.setFastestInterval(10);
    mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);*/
    LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder();
    builder.addLocationRequest(mLocationRequest)
            .setAlwaysShow(false); // Show dialog

    Task<LocationSettingsResponse> task= LocationServices.getSettingsClient(this).checkLocationSettings(builder.build());

    task.addOnCompleteListener(task1 -> {
        try {
            LocationSettingsResponse response = task1.getResult(ApiException.class);
            // All location settings are satisfied. The client can initialize location
            // requests here.
            toggleHotspot();

        } catch (ApiException exception) {
            switch (exception.getStatusCode()) {
                case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
                    // Location settings are not satisfied. But could be fixed by showing the
                    // user a dialog.
                    try {
                        // Cast to a resolvable exception.
                        ResolvableApiException resolvable = (ResolvableApiException) exception;
                        // Show the dialog by calling startResolutionForResult(),
                        // and check the result in onActivityResult().
                        resolvable.startResolutionForResult(HotspotActivity.this, REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS);
                    } catch (IntentSender.SendIntentException e) {
                        // Ignore the error.
                    } catch (ClassCastException e) {
                        // Ignore, should be an impossible error.
                    }
                    break;
                case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
                    // Location settings are not satisfied. However, we have no way to fix the
                    // settings so we won't show the dialog.
                    break;
            }
        }
    });
}

@RequiresApi(api = Build.VERSION_CODES.O)
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    final LocationSettingsStates states = LocationSettingsStates.fromIntent(data);
    switch (requestCode) {
        case REQUEST_ENABLE_LOCATION_SYSTEM_SETTINGS:
            switch (resultCode) {
                case Activity.RESULT_OK:
                    // All required changes were successfully made
                    toggleHotspot();
                    Toast.makeText(HotspotActivity.this,states.isLocationPresent()+"",Toast.LENGTH_SHORT).show();
                    break;
                case Activity.RESULT_CANCELED:
                    // The user was asked to change settings, but chose not to
                    Toast.makeText(HotspotActivity.this,"Canceled",Toast.LENGTH_SHORT).show();
                    break;
                default:
                    break;
            }
            break;
    }
}

UseAge

btnHotspot.setOnClickListenr(view -> {
   if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        // Step 1: Enable the location settings use Google Location Service
        // Step 2: https://stackoverflow.com/questions/29801368/how-to-show-enable-location-dialog-like-google-maps/50796199#50796199
        // Step 3: If OK then check the location permission and enable hotspot
        // Step 4: https://stackoverflow.com/questions/46843271/how-to-turn-off-wifi-hotspot-programmatically-in-Android-8-0-oreo-setwifiapen
        enableLocationSettings();
        return;
    }
}

<uses-permission Android:name="Android.permission.ACCESS_COARSE_LOCATION" />

implementation 'com.google.Android.gms:play-services-location:15.0.1'
0
Xar E Ahmer

プログラムでオンとオフを切り替えることができます

setWifiApDisable.invoke(connectivityManager, TETHERING_WIFI);//Have to disable to enable
setwifiApEnabled.invoke(connectivityManager, TETHERING_WIFI, false, mSystemCallback,null);

コールバッククラスを使用して、pie(9.0)のホットスポットをプログラムでオンにするには、プログラムでオフにしてスイッチをオンにする必要があります。

0
akshay

そのオプションにはコンソールとサービスを使用できます。

これで解決できると思います。コンソールで直接テストを行い、ホットスポットを有効にしました

私はこの記事でこれを見つけました AndroidデバイスをUSBテザリングすることは可能ですか?

インターフェースを読んだ後、同じ24を使用できますが、より多くのパラメーターが必要です

サービスコール接続24 i32 0 i32 1 i32 0 s16ランダム

0
Eduardo Rotundo