Dialog with transparent background in Android

前端 未结 20 2663
孤城傲影
孤城傲影 2020-11-22 15:02

How do I remove the black background from a dialog box in Android. The pic shows the problem.

\"enter

20条回答
  •  萌比男神i
    2020-11-22 15:32

    I've faced the simpler problem and the solution i came up with was applying a transparent bachground THEME. Write these lines in your styles

        @drawable/blue_searchbuttonpopupbackground
    
    
    

    And then add

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

    in your main manifest file , inside the block of the dialog activity.

    Plus in your dialog activity XML set

     android:background= "#00000000"
    

提交回复
热议问题