I have tried to make a custom alert dialog and it mostly works very well. the functionality is working perfectly but the view is behaving in a weird way. The dialog layout consists of a button and a listview. as you will see in the screenshot below the button is getting a margin on top and bottom.

i dont see any reason for these margins, and i would greatly appreciate some help :)

for some reason i cant post my xml layout but i can asure you that it contains no paddings or margins of any kind

Java Code :

View dialogView = ((LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.choose_catagory_dialog_layout, null, false);
    Button footerButton = (Button) dialogView.findViewById(R.id.choose_catagory_dialog_footer_button);
    footerButton.setOnClickListener(ButtonClickEvent);

    builder = new AlertDialog.Builder(mContext);
    builder.setView(dialogView);
    builder.setTitle(R.string.choose_catagory);

    builder.setAdapter(spinnerAdapter, ListclickEvent);
    alert = builder.create();
    alert.getListView().setVerticalFadingEdgeEnabled(false);
    alert.setOwnerActivity((Activity) mContext);

Screenshot:

http://cl.ly/3S2y3p3E0e3H2o1I272m

link|improve this question

79% accept rate
feedback

2 Answers

up vote 5 down vote accepted

The CustomPanel of an AlertDialog has a 5dp top and bottom padding. You can override these using:

builder.setView(dialogView, 0, 0, 0, 0);
link|improve this answer
ok but this is method of the AlertDialog class and not AlertDialog.builder , so how to invoke that method? – Emil Sjölander Mar 16 '11 at 18:25
It is part of AlertDialog.builder: developer.android.com/reference/android/app/…) You would replace your 4th line with what pcans has above. – JKM Mar 16 '11 at 18:28
as stated in linked document, the setView() method of AlertDialog.builder is setView(View) Though AlertDialog contains the method setView(View,int,int,int,int) . how do i access this method from AlertDialog.builder? – Emil Sjölander Mar 16 '11 at 18:34
stupid of me, forget that last qeustion. thanks you so much for your help! – Emil Sjölander Mar 16 '11 at 18:37
This doesn't seem to work on devices with HTC Sense, the padding is still there. – Daniel Novak Dec 20 '11 at 23:14
show 1 more comment
feedback

For me, it seemed that builder.setView(dialogView, 0, 0, 0, 0); is set to @hide and not available. In the end, I had to set the padding of my custom view's parent after calling show()

For example:

// Inflate custom dialog view
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
CustomDialogView dialogView = (CustomDialogView)inflater.inflate(R.layout.dialog_view, null);

// Create and show custom alert dialog
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle(R.string.dialog_title);
builder.setView(dialogView);
builder.setPositiveButton(R.string.dialog_ok, this);
builder.setNegativeButton(R.string.dialog_cancel, this);
builder.show();

// Remove padding from parent
ViewGroup parent = (ViewGroup)dialogView.getParent();
parent.setPadding(0, 0, 0, 0);
link|improve this answer
For some reason the padding remains. Anyone has better solution? – Randalfien Apr 1 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.