How to create a semi-transparent instruction page in Android?

前端 未结 4 1302
花落未央
花落未央 2021-01-30 02:55

I am new to Android and trying to work on this problem for last 2 days but could find a solution. Any help will be highly appreciated. How to create a semi-transparent page for

4条回答
  •  情深已故
    2021-01-30 03:06

    Create a new activity and set the top-level view to have a translucent background:

    android:background="#c0000000"
    

    EDIT: You also need to declare the activity to have a transparent background. Setting this theme for the activity in the manifest will work:

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

提交回复
热议问题