我一直在使用JavaFx(使用JavaFxPorts和Gluon-Mobile)处理Android应用程序。
我已使用ConnectivityService.class检查设备是否连接到网络
但是,我要做的下一件事就是以编程方式打开/关闭设备的Wifi
我如何使用Gluon-mobile API实现这一点。
答案 0 :(得分:2)
因此。要访问FXActivity(通过FXActivity.getActivity()
),您需要稍微更新Gradle文件。
以下是我的文件的样子
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.5'
}
}
apply plugin: 'org.javafxports.jfxmobile'
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'ch.cnlab.disentis.Main'
// preloaderClassName = 'ch.cnlab.disentis.Preloader'
dependencies {
compile 'com.gluonhq:charm:4.3.1'
compile 'org.controlsfx:controlsfx:8.40.12'
compileNoRetrolambda 'com.airhacks:afterburner.mfx:1.6.2'
compile 'de.jensd:fontawesomefx-commons:8.15'
compile 'de.jensd:fontawesomefx-fontawesome:4.7.0-5'
compile 'de.jensd:fontawesomefx-materialdesignfont:1.7.22-4'
compile 'de.jensd:fontawesomefx-materialicons:2.2.0-5'
compile 'de.jensd:fontawesomefx-controls:8.15'
compile 'com.fasterxml.jackson.core:jackson-databind:2.8.4'
compile 'commons-codec:commons-codec:1.10'
androidCompile files("$System.env.ANDROID_HOME/platforms/android-22/android.jar")
androidCompile files("$System.env.ANDROID_HOME/extras/android/support/v4/android-support-v4.jar")
compile 'org.javafxports:jfxdvk:8.60.9'
androidRuntime 'org.javafxports:jfxdvk:8.60.9'
}
jfxmobile {
downConfig {
plugins 'display', 'lifecycle', 'storage', 'orientation', 'settings', 'browser', 'ble'
}
android {
manifest = 'src/android/AndroidManifest.xml'
compileSdkVersion = 22
minSdkVersion = 19
targetSdkVersion = 22
dexOptions {
javaMaxHeapSize '2g'
}
packagingOptions {
pickFirst 'META-INF/LICENSE'
pickFirst 'META-INF/NOTICE'
pickFirst 'license/LICENSE.txt'
}
signingConfig {
storeFile file('signing/android/my-release-key.keystore')
File propsFile = file('signing/android/keystore.properties');
if (propsFile.exists()) {
Properties props = new Properties();
props.load(new FileInputStream(propsFile))
storePassword props.getProperty('RELEASE_STORE_PASSWORD')
keyAlias props.getProperty('RELEASE_KEY_ALIAS')
keyPassword props.getProperty('RELEASE_KEY_PASSWORD')
}
}
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'de.jensd.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'javax.xml.**.*',
'org.glassfish.json.**.*',
'com.airhacks.**.*',
'okio.**.*',
'okhttp3.**.*',
'com.fasterxml.**.*',
'ch.cnlab.disentis.**.*'
]
}
}
需要注意的是,我需要包含依赖项androidCompile files("$System.env.ANDROID_HOME/**")
,否则我的Eclipse安装无法访问Android内容。 : - /
您需要访问FXActivity的依赖项是:
compile 'org.javafxports:jfxdvk:8.60.9'
androidRuntime 'org.javafxports:jfxdvk:8.60.9'
要了解jfxdvk(JavaFX Dalvik)的最新版本,我会不时查看以下页面
https://bitbucket.org/javafxports/javafxmobile-plugin - 在这里你可以看到javafxmobile-plugin
依赖的东西。
http://nexus.gluonhq.com/nexus/content/repositories/releases和http://nexus.gluonhq.com/nexus/content/repositories/releases - 找出最新版本的Charm Down库是什么(我的Gradle文件已经有点过时了。)
我希望,这有帮助。
问候,丹尼尔
答案 1 :(得分:1)
你好我不熟悉胶子,但如果你使用java你可以使用这个方法:
在Manifest文件中添加以下权限:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"></uses-permission>
然后你可以检查是否通过布尔启用WiFi像这样:
boolean wifiEnabled = wifiManager.isWifiEnabled()
最终可以通过以下方式改变状态:
WifiManager wifiManager = (WifiManager)
`this.getSystemService(Context.WIFI_SERVICE);`
wifiManager.setWifiEnabled(true);
wifiManager.setWifiEnabled(false);
希望这会有所帮助