How do I create a transparent Activity on Android?

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

    For dialog activity I use this:

    getWindow().getDecorView().setBackgroundResource(android.R.color.transparent);
    

    But you also need to set your main View in the activity to invisible. Otherwise the background will be invisible while all views in it will be visible.

提交回复
热议问题