gpt4 book ai didi

android - 尝试设置内容 View 的 PhoneGap Android 插件问题

转载 作者:太空狗 更新时间:2023-10-29 13:39:10 24 4
gpt4 key购买 nike

我正在尝试让我的第一个 Android 插件正常工作。我已经成功注册并能够执行它。在我的插件执行操作中,我正在尝试执行以下操作:

ctx.setContentView(R.layout.map);

其中包含加载谷歌地图的新布局;但是,当我运行它时,我收到以下错误:

Only the original thread that created a view hierarchy can touch its views.

知道我应该怎么做吗?

最佳答案

您必须在 UI 线程上运行它。您只能在 UI 线程上触摸 UI 元素。

runOnUiThread(runb);

private Runnable runb = new Runnable() {

public void run(){
//call setContentView code here.
}
}

关于android - 尝试设置内容 View 的 PhoneGap Android 插件问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7825636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com