How do I create a transparent Activity on Android?

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

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

How can I achieve this?

22条回答
  •  猫巷女王i
    2020-11-21 05:30

    All those answers might be confusing, there is a difference between Transparent activity and None UI activity.

    Using this:

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

    Will make the activity transparent but will block the UI.

    If you want a None UI activity than use this:

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

提交回复
热议问题