作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法从在 android 上运行的 Go fyne 应用程序发出 http 请求,下面是一个简单的例子来说明这个问题
package main
import (
"io/ioutil"
"net/http"
"log"
"fyne.io/fyne"
"fyne.io/fyne/app"
"fyne.io/fyne/widget"
)
func main() {
app := app.New()
w := app.NewWindow("Android http issue")
w.SetContent(widget.NewVBox(
widget.NewLabel("Run test"),
widget.NewButton("Connect", func() {
go func() {
HttpGetData(w)
}()
}),
))
w.ShowAndRun()
}
func HttpGetData( win fyne.Window) {
resp, err := http.Get("http://date.jsontest.com/" )
if err != nil {
log.Println("%v", err)
}
defer resp.Body.Close()
bodyBytes, _ := ioutil.ReadAll(resp.Body)
StartScreen(win, string(bodyBytes))
}
func StartScreen(win fyne.Window, data string) {
l := widget.NewLabel("data" +data)
win.SetContent(l)
}
我可以使用
go run -tags mobile . -t
在 linux 上运行代码
go run -tags mobile . -t
看到一切正常在 linux 上
fyne package -os android -appID basic.client -icon ico.png
使用 adb 安装
adb install <path to apk>/basicExample.apk
当我在 android 中运行应用程序时,我会进入第一个屏幕,然后像以前一样触发事件。
F/libc ( 4711): Fatal signal 6 (SIGABRT), code -6 in tid 4739 (basic.client)
E/InputDispatcher( 535): channel '344d7ddf basic.client/org.golang.app.GoNativeActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
任何帮助将不胜感激
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="basic.client"
android:versionCode="1"
android:versionName="1.0">
<application android:label="Client" android:debuggable="true">
<uses-permission android:name="android.permission.INTERNET" />
<activity android:name="org.golang.app.GoNativeActivity"
android:label="Client"
android:configChanges="orientation|keyboardHidden">
<meta-data android:name="android.app.lib_name" android:value="client" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
从评论更新
android:usesCleartextTraffic="true" tools:targetApi="28"
导致
fyne package
出现以下错误命令
failed to find table ref by "attr/usesCleartextTraffic"
我在
fyne package
中添加了打印语句命令记录构建环境变量,这就是它们的样子
GOOS=android
GOARCH=arm
CC={path to}/ndk/21.2.6472646/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi16-clang
CXX={path to}/ndk/21.2.6472646/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi16-clang++
CGO_ENABLED=1
GOARM=7
最佳答案
使用最新版本的 Fyne,我们修复了打包程序和 Android list 的一些问题。默认情况下不启用 Internet 权限,但如果您在存储权限定义下添加它,它现在应该可以工作。
我们正在开发更好的跨平台权限请求代码,应该会在今年晚些时候发布。
关于android - 如何在 android 上为原生 fyne 应用程序发出 http 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62513662/
我是一名优秀的程序员,十分优秀!