Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created a Dialog using LinearLayout and in this Dialog, I have a Button. I want to set its width to 50% of the Dialog's width, but no matter what I do, the button is still filling the entire width. The main problem seems to be that I cannot set the button's weight programmatically. I tried creating a second horizontal LinearLayout that would hold the button with weight set to 0.5f (the parent has a weightSum of 1), but that did not change anything. How can I set the button to be half the width?

I've looked at all the other questions but most of them were using xml so they were not relevant, and the one that solved it programmatically was using hardcoded values in pixels which is obviously an incorrect solution to the problem.

EDIT: Adding some code

LinearLayout linearLayout = new LinearLayout(mContext);
linearLayout.setOrientation(LinearLayout.VERTICAL);
linearLayout.setWeightSum(1);

// I use these params when I call addContentView
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);

testButton = new Button(mContext);
testButton.setText("Test");
testButton.setId(1);
testButton.setWidth(0);
testButton.setGravity(Gravity.CENTER);

LinearLayout buttonLayout = new LinearLayout(mContext);
butonLayout.setOrientation(LinearLayout.HORIZONTAL);

LinearLayout.LayoutParams buttonParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT, 0.5f);
testButton.setLayoutParams(buttonParams);
buttonLayout.addView(testButton);

linearLayout.addView(buttonLayout);

...

this.addContentView(scrollView, layoutParams);
share|improve this question
CODE PLEASE !!! – Nirav Ranpara Oct 25 '12 at 13:39
The code is irrelevant IMHO, but wait a moment, I'll add it. – JohnEye Oct 25 '12 at 13:41

3 Answers

Are you setting the width value to 0dp as well? This is required for the layout engine to automatically to use layout weight respectively.

Edit

I think this line will get you the results you are looking for:

LayoutParams buttonParams = new LinearLayout.LayoutParams(0, LinearLayout.LayoutParams.WRAP_CONTENT, 0.5f);
share|improve this answer
Please use the comment feature for asking clarifying questions. – IceMAN Oct 25 '12 at 13:47
@Siddharth Lele thanks for the comment, but while it's framed as a question, if true will likely be the answer to the original question. – Android Addict Oct 25 '12 at 13:53
I did that in one of the past attempts, but let's try again. – JohnEye Oct 25 '12 at 13:54
@AndroidAddict: In that case, my bad. :-(. I was on the line on that one. – IceMAN Oct 25 '12 at 14:00
tried again and nope, the button is still wide. I guess it is somehow caused by the MATCH_PARENT, but I have no idea how to bypass it. – JohnEye Oct 25 '12 at 14:01
show 7 more comments

To find dialog width

DisplayMetrics dm = new DisplayMetrics();
     dialog.getWindow().getWindowManager().getDefaultDisplay().getMetrics(dm);
    int width = dm.widthPixels ;

To Set Value programmatically

final LayoutParams lparams = new LayoutParams(Height,width/2); // Width , height
    final Button button = new Button(this);
    button.setLayoutParams(lparams);

EDIT

WindowManager.LayoutParams lp = new WindowManager.LayoutParams();

lp.copyFrom(alertDialog.getWindow().getAttributes());
lp.width = 200;
lp.height = 200;
alertDialog.getWindow().setAttributes(lp);
share|improve this answer
Wouldn't that set the button width to half the width of screen, instead of half the width of its parent dialog? – JohnEye Oct 25 '12 at 13:57
dialog.getWindow will get the dialog window parameters and yes you need to set the parent layout's parameters as fill parent – Deepak Samuel Rajan Oct 25 '12 at 14:02
That unfortunately doesn't guarantee that the Dialog will fill the window, for example in Android 4. – JohnEye Oct 25 '12 at 14:16
the above code will give you the parameters of Dialog which your showing and not the width of entire screen please give it a try – Deepak Samuel Rajan Oct 25 '12 at 14:17
Thank you, this is working, kinda. The button is indeed less wide, but the damned Dialog shrinks now to the same width as the button. – JohnEye Oct 25 '12 at 14:34
show 3 more comments

As I tried more and more options, the code became a mess. I decided to start from scratch and this code worked in the end:

LinearLayout forButton = new LinearLayout(mContext);
forButton.setOrientation(LinearLayout.HORIZONTAL);
LinearLayout.LayoutParams forButtonParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
forButton.setGravity(Gravity.CENTER);

DisplayMetrics dm = new DisplayMetrics();
this.getWindow().getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.widthPixels;

forButton.addView(testButton);
testButton.getLayoutParams().width = width/2;
share|improve this answer

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.