How do I remove the black background from a dialog box in Android. The pic shows the problem.
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"