How do I create a transparent Activity on Android?

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

    I wanted to add to this a little bit as I am a new Android developer as well. The accepted answer is great, but I did run into some trouble. I wasn't sure how to add in the color to the colors.xml file. Here is how it should be done:

    colors.xml

    
    
         #7f040000
         #00000000
    
    

    In my original colors.xml file I had the tag "drawable":

    #7f040000
    

    And so I did that for the color as well, but I didn't understand that the "@color/" reference meant look for the tag "color" in the XML. I thought that I should mention this as well to help anyone else out.

提交回复
热议问题