本文整理自网络,侵删。
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利用微软sapi实现语音控制(Delphi,tts,sr,灰色代码)_
Delphi 将image组件的图片保存为jpg格式图片方法
Delphi 万年历 程序源码下部分(包括:农历计算、24节气、星期计算、属相)
更多相关阅读请进入《Delphi》频道 >>