A resposta do olivierg funcionou para mim e é a melhor solução se a criação de uma classe Dialog personalizada for o caminho que você deseja seguir. No entanto, me incomodou não poder usar a classe AlertDialog. Eu queria poder usar o estilo AlertDialog do sistema padrão. Criar uma classe de diálogo personalizada não teria esse estilo.
Então, eu encontrei uma solução (hack) que funcionará sem ter que criar uma classe personalizada; você pode usar os construtores existentes.
O AlertDialog coloca uma exibição acima da exibição de conteúdo como um espaço reservado para o título. Se você encontrar a vista e definir a altura como 0, o espaço desaparecerá.
Eu testei isso em 2.3 e 3.0 até agora, é possível que ainda não funcione em todas as versões.
Aqui estão dois métodos auxiliares para fazer isso:
/**
* Show a Dialog with the extra title/top padding collapsed.
*
* @param customView The custom view that you added to the dialog
* @param dialog The dialog to display without top spacing
* @param show Whether or not to call dialog.show() at the end.
*/
public static void showDialogWithNoTopSpace(final View customView, final Dialog dialog, boolean show) {
// Now we setup a listener to detect as soon as the dialog has shown.
customView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
// Check if your view has been laid out yet
if (customView.getHeight() > 0) {
// If it has been, we will search the view hierarchy for the view that is responsible for the extra space.
LinearLayout dialogLayout = findDialogLinearLayout(customView);
if (dialogLayout == null) {
// Could find it. Unexpected.
} else {
// Found it, now remove the height of the title area
View child = dialogLayout.getChildAt(0);
if (child != customView) {
// remove height
LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams();
lp.height = 0;
child.setLayoutParams(lp);
} else {
// Could find it. Unexpected.
}
}
// Done with the listener
customView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
}
}
});
// Show the dialog
if (show)
dialog.show();
}
/**
* Searches parents for a LinearLayout
*
* @param view to search the search from
* @return the first parent view that is a LinearLayout or null if none was found
*/
public static LinearLayout findDialogLinearLayout(View view) {
ViewParent parent = (ViewParent) view.getParent();
if (parent != null) {
if (parent instanceof LinearLayout) {
// Found it
return (LinearLayout) parent;
} else if (parent instanceof View) {
// Keep looking
return findDialogLinearLayout((View) parent);
}
}
// Couldn't find it
return null;
}
Aqui está um exemplo de como é usado:
Dialog dialog = new AlertDialog.Builder(this)
.setView(yourCustomView)
.create();
showDialogWithNoTopSpace(yourCustomView, dialog, true);
Se você estiver usando isso com um DialogFragment, substitua o onCreateDialog
método do DialogFragment . Em seguida, crie e retorne sua caixa de diálogo como o primeiro exemplo acima. A única alteração é que você deve passar false como o terceiro parâmetro (show) para que ele não chame show () na caixa de diálogo. O DialogFragment tratará disso mais tarde.
Exemplo:
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = new AlertDialog.Builder(getContext())
.setView(yourCustomView)
.create();
showDialogWithNoTopSpace(yourCustomView, dialog, false);
return dialog;
}
À medida que for testando mais, não deixarei de atualizar os ajustes adicionais necessários.