Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently doing an android application that contains customize alert dialog. It contains a button , but i can't set the margin for the button . the code is given below. setmargin method is not working

AlertDialog.Builder myDialog = new AlertDialog.Builder(Login.this);
Button button = new Button(Login.this);

button.setText("Send");
LayoutParams buttonLayoutParams 
    = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

button.setLayoutParams(buttonLayoutParams);

resetPassword=editText.getText().toString();

LinearLayout layout = new LinearLayout(Login.this);
layout.setOrientation(LinearLayout.VERTICAL);
layout.addView(textView);
layout.addView(editText);
layout.addView(button);

myDialog.setView(layout);
share|improve this question
improve your accept rate please.that is how our community work. – Sameer Jun 16 '12 at 9:39

2 Answers

up vote 4 down vote accepted

Write Following Code to set Margin, it may help you.

AlertDialog.Builder myDialog = new AlertDialog.Builder(Login.this);
Button button = new Button(Login.this);
EditText editText = new EditText(Login.this);
TextView textView = new TextView(Login.this);
button.setText("Send");
LayoutParams buttonLayoutParams = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
buttonLayoutParams.setMargins(50, 10, 0, 0);
button.setLayoutParams(buttonLayoutParams);
String resetPassword = editText.getText().toString();
LinearLayout layout = new LinearLayout(Login.this);
layout.setOrientation(LinearLayout.VERTICAL);
layout.addView(textView);
layout.addView(editText);
layout.addView(button);
myDialog.setView(layout);
myDialog.show();
share|improve this answer
it is not working . the button is inside alertdialog – user1057197 Jun 16 '12 at 9:34
Please see my Edited Answer, it is working for me. – Dipak Keshariya Jun 16 '12 at 10:07
no it is not working. it shows an error add cast to buttonlayoutparams in setMargin method. – user1057197 Jun 16 '12 at 10:15
2  
Please Import import android.widget.LinearLayout.LayoutParams; in your activity. – Dipak Keshariya Jun 16 '12 at 10:18
thanks brother . thanks a lot – user1057197 Jun 16 '12 at 10:25
show 1 more comment
buttonLayoutParams.bottomMargin
buttonLayoutParams.topMargin
buttonLayoutParams.leftMargin
buttonLayoutParams.rightMargin

can be used to set margins

share|improve this answer
it is not working – user1057197 Jun 16 '12 at 9:30
Are you setting the layout parameters for your LinearLayout? – user1458071 Jun 16 '12 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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