xml中部分控件需要使用全包名,否则
findComponentById会查不到例如:
1
2
3
4<ohos.agp.components.webengine.WebView
ohos:id="$+id:webView"
ohos:height="match_parent"
ohos:width="match_parent"/>如果直接使用
1
2
3
4<WebView
ohos:id="$+id:webView"
ohos:height="match_parent"
ohos:width="match_parent"/>会查询不到改控件。
未完待续…