手机应用上的新手。 我试图在我的Android应用程序上使用webview。但是我的代码中存在问题。我使用了https://developer.android.com/中的示例,但它现在以某种方式工作。你能检查我的代码吗....
@IBAction func orientationSwitched(_ sender: UISwitch) {
orientations = orientationSwitches
.filter{$0.isOn}
.map{UIInterfaceOrientationMask(rawValue: UInt($0.tag))}
.reduce([]) {$0.union($1)}
}
android说"无法解析符号webview" ...
整个代码在这里 - >
WebView myWebView = (WebView) findViewById(R.id.webview);
答案 0 :(得分:1)
检查id
中是否有一个WebView,其@+id/webview
属性值为<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
,如下例所示:
server
答案 1 :(得分:0)
对xml中的webView进行以下更改:
{{1}}