How do I create a transparent Activity on Android?

前端 未结 22 2131
忘掉有多难
忘掉有多难 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:25

    Just add the following line to the activity tag in your manifest file that needs to look transparent.

    android:theme="@android:style/Theme.Translucent"
    

提交回复
热议问题