欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

安卓Dialog实现透明背景

程序员文章站 2022-03-26 18:41:05
...

http://blog.csdn.net/ithouse/article/details/52439023

AlertDialog alertDialog = new AlertDialog.Builder(activity).create();
        alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable());
        alertDialog.show();
        alertDialog.setContentView(R.layout.dialog_loading);
        alertDialog.setCanceledOnTouchOutside(false);
  • 1

xml文件中根节点的高最好是具体数值,比如250dp,然后背景颜色设为transparent即可。例如:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="250dp"
    android:background="@color/transparent">

    <com.wzkj.vzone.org.widget.progress.AVLoadingIndicatorView
        android:id="@+id/progressBar1"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_centerInParent="true"
        app:indicator="BallSpinFadeLoader"
        app:indicator_color="@color/titlecolor" />
</RelativeLayout>