Delphi andorid应用程序检查Wifi有效还是无效


本文整理自网络,侵删。

 
type
  TForm1 = class(TForm)

    function IsWifiEnabled: Boolean;

  end;

uses
  Androidapi.Helpers,
  Androidapi.JNI.JavaTypes,
  Androidapi.JNI.GraphicsContentViewText,
  Androidapi.JNIBridge,
  Androidapi.JNI.WifiManager;

function TForm1.IsWifiEnabled: Boolean;
var
  Obj: JObject;
  WifiManager: JWifiManager;
begin
  Obj := SharedActivityContext.getSystemService
    (TJContext.JavaClass.WIFI_SERVICE);
  if Obj = nil then
    Exit(False);
  WifiManager := TJWiFiManager.Wrap((Obj as ILocalObject).GetObjectID);
  Result := WifiManager.isWifiEnabled;
end;

相关阅读 >>

Delphi 2009 indy10 idhttp get 中文出现乱码的问题

Delphi的tfilestream

Delphixe ansi字符串utf-8编码判断

Delphi 内存管理[6]

Delphi crc32算法

Delphi 2007 使用shelltreeview控件

Delphi 解析json生成json

Delphi 间隔时间

Delphi record,两种声明方式

Delphi 判断 中文字符

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...