如何以编程方式创建透明的活动?
我想启动一个以 webView 作为当前活动内容的活动。这个新的 Activity 需要是透明的,并且 webview 应该位于中心。我浏览了网络,但发现的唯一解决方案是使用样式 xml。我想使用纯代码来完成它,即没有 xml 声明。如果有人遇到过这个,请透露一些信息。
I want to launch an Activity with a webView as its content from current Activity. This new activity needs to be transparent and webview should be in the center. I looked around the web but only solutions I found were using style xmls. I want to do it using pure code i.e. no xml declarations. if anybody has come across this then please shed some light.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否考虑过创建一个嵌入 WebView 的对话框?
编辑
这是我的
onCreateDialog()
中的内容:Have you considered creating a Dialog with a WebView embedded in it?
EDIT
Here is what I have in my
onCreateDialog()
: