How do I create a transparent Activity on Android?

前端 未结 22 2183
忘掉有多难
忘掉有多难 2020-11-21 04:43

I want to create a transparent Activity on top of another activity.

How can I achieve this?

22条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-21 05:24

    If you are using AppCompatActivity then add this in styles.xml

    
    

    In manifest file you can add this theme to activity tag like this

    android:theme="@style/TransparentCompat"
    

    for more details read this article

提交回复
热议问题