如何使LinearLayout成为透明背景?

时间:2017-10-16 13:03:34

标签: xamarin.android

我想在线性布局中制作透明背景,我想在地图中显示更圆的对话框,但我的背景是显示白色。

Image

任何机构都有任何建议。

1 个答案:

答案 0 :(得分:0)

您可以将背景设置为Dialog,例如:

View dialogView = LayoutInflater.From(this).Inflate(Resource.Layout.layout1, null);

Dialog dialog = new Dialog(this);
dialog.SetContentView(dialogView);
dialog.Window.SetBackgroundDrawable(new ColorDrawable(Color.Transparent));
dialog.Show();