如何去除android中弹出窗口的黑色阴影?
我在 Android 应用程序中创建了一个小的弹出窗口,用于登录表单,如下图所示。它有一些黑色阴影(红线提到)如何删除它,以及如何在弹出布局中引入箭头形符号(即一些定制设计)
I created a small popup window in android app for login form shown in the below image. It has some black shades(mentioned in red line) how to remove this, also how to bring arrow shaped symbol in the popup layout(i.e- some customised designs)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过
setBackgroundDrawable(null);
将背景设置为null,这样新的弹出窗口将是透明的you can set the background to null by
setBackgroundDrawable(null);
by which the new popup window will be transparent如何在弹出布局中引入箭头形状的符号(即一些定制设计)
我认为您需要一些快速操作的弹出窗口。以下链接以及源代码将对您有所帮助。
http://www.londatiga.net/it/如何在 android 中创建quickaction-dialog/
how to bring arrow shaped symbol in the popup layout(i.e- some customised designs)
What I thought is you required some quick action popup. Following link along with source codes will help u.
http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/