android-layout – match_parent不填充父级!

前端之家收集整理的这篇文章主要介绍了android-layout – match_parent不填充父级!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在TableRow中有LinearLayout.
LinearLayout在代码中启动,这样:
LinearLayout  mainRowLayout = new LinearLayout(this);
mainRowLayout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,LayoutParams.WRAP_CONTENT));
TableRow tr = new TableRow(this);
tr.addView(mainRowLayout);

问题是LinearLayout没有填充父级(这是TableRow).
附图说明了问题,如Android的hirarchyViewer(绿色矩形是我的标记)所示.

“LinearLayout image”

谢谢.

解决方法

以编程方式创建布局时,您需要为父容器提供子项的布局说明.
// child element
LinearLayout mainRowLayout = new LinearLayout(this);

// parent element
TableRow tr = new TableRow(this);

// parent element's instructions (layout params for main row)
TableRow.LayoutParams lopForMainRow = new TableRow.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);

tr.addView(mainRowLayout,lopForMainRow);

搏一搏 :]

原文链接:https://www.f2er.com/android/316116.html

猜你在找的Android相关文章