How do I create a transparent Activity on Android?

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

    In the onCreate function, below the setContentView, add this line:

    getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
    

提交回复
热议问题