这是我的第一个应用程序,我正在尝试将网站转换为android studio中的应用程序。我正在关注本教程-https://youtu.be/oy-0ss-n33g。但是我得到了:
Cannot resolve symbol WebView
如何解决此错误?
答案 0 :(得分:1)
您忘记导入library(dplyr)
dats$filling <- reorder(dats$filling, -dats$ordering)
ggplot(dats,aes(x = id,
y = value,
fill = filling)) +
geom_bar(stat = "identity",position = "stack") +
guides(fill=guide_legend("ordering"))
,只需在导入部分添加WebView
或alt + Enter即可自动导入该类
答案 1 :(得分:0)
导入此类
import android.webkit.WebView;
import android.webkit.WebSettings;
并确保xml布局中的Webview的ID与您在Java中引用的ID相同。