android webview错误。 findViewbyID

时间:2017-08-06 20:48:28

标签: android webview

手机应用上的新手。 我试图在我的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);

2 个答案:

答案 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}}