Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我按照“嵌入 Cordova WebView”指南使 Cordova 与我的本机应用程序一起工作,而且效果很好......
但是,如果科尔多瓦 webview 可以透明地覆盖在我的原生应用程序上,那就太好了。
有谁知道这是否可行?...
假设一切都在 appview 后面的相同布局上,让 WebView 透明是一件容易的事。
您可以轻松设置 appView 变量的 alpha:
appView.setAlpha(0.5f);
如果所有内容不在同一个布局中,您需要提供更多详细信息,说明您在此处尝试实现的目标。