2022年4月27日 星期三

Android Java 出現「將findViewById()強制轉型是多餘的」提示

例如:
webview = (WebView) findViewById(R.id.myWebView);

出現提示:
Casting 'findViewById(R.id.myWebView)' to 'WebView' is redundant

解決方式:拿掉強制轉型
webview = findViewById(R.id.myWebView);

原因:
當選擇的 compileSDKVersion 在26之後,findViewById() 不需要強制轉型。



參考:



沒有留言:

張貼留言