I create a AlertDialog with the code below. For some reason I\'m getting an extra background (see pic) on Honeycomb and above. The code crashes
AlertDialog
You can try to use new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.JumpDialog)) instead of new AlertDialog.Builder(this, R.style.JumpDialog)
new AlertDialog.Builder(new ContextThemeWrapper(this, R.style.JumpDialog))
new AlertDialog.Builder(this, R.style.JumpDialog)