如何在android中为CardView制作透明背景?
How to make transparent background for CardView in android?
我尝试制作透明背景,但我尝试过的解决方案均无效。
The background color of the parts I marked.
当我单击地图上的标记时,此对话框应该以透明背景打开。我该怎么做?
如果您使用的是对话框,请尝试
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
在调用 dialog.show()
之前
我尝试制作透明背景,但我尝试过的解决方案均无效。
The background color of the parts I marked.
当我单击地图上的标记时,此对话框应该以透明背景打开。我该怎么做?
如果您使用的是对话框,请尝试
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
在调用 dialog.show()