为什么
TableRow.LayoutParams layout = new TableRow.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, 1/11);
不工作,但
String s = "0.0909";
float fVal = Float.valueOf(s).floatValue();
TableRow.LayoutParams layout = new TableRow.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, fVal);
做?
我使用它来使表格行适合具有动态表格宽度的表格。
问候