Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: Setting the Weight parameter programmatically does the opposite of what i want

I'm having a problem with android. I'm setting the Weight parameter in Java, but it's doing exactly the oposite of what I want.

Here's the code

LinearLayout container = new LinearLayout(context);
// some code ...
container.setWeightSum(1f);

View v1 = new View(context);
v1.setBackgroundColor(Color.parseColor("#ff0000"));
LinearLayout.LayoutParams p1 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
p1.weight=0.1f;

View v2 = new View(context);
v2.setBackgroundColor(Color.parseColor("#000000"));
LinearLayout.LayoutParams p2 = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT);
p2.weight=0.9f;

container.addView(v1,p1);
container.addView(v2,p2);

I repeat this process 7 times with adding a black line between the container layout. Normally I should get a small red column on the lef, and a large black one, but here's what I get with this code :

http://i.stack.imgur.com/PPgoy.png

Why does it doing exactly the opposite of the code ?

like image 486
Firas Avatar asked Jun 23 '12 14:06

Firas


2 Answers

When we use the weight width should be Zero

try with width 0 for with children inside the container.............

 LinearLayout.LayoutParams p1 = new LinearLayout.LayoutParams(0,LinearLayout.LayoutParams.WRAP_CONTENT);



LinearLayout.LayoutParams p2 = new LinearLayout.LayoutParams(0,LinearLayout.LayoutParams.WRAP_CONTENT);
like image 149
Dheeresh Singh Avatar answered Oct 17 '22 00:10

Dheeresh Singh


You are setting both widths to "wrap_content"... when using weights you should set the affected orientation to "0dp" (or it's programatic equivalent).

like image 29
Barak Avatar answered Oct 17 '22 00:10

Barak