我想编写应用程序,我在代码中创建布局(没有xml-layout文件)。在xml文件中我可以写:
android:layout_width="fill_parent"
我应该在代码中写什么? 我寻找类似的东西:
LinearLayout ll = new LinearLayout(this);
ll.set?????? (????) ;
答案 0 :(得分:3)
你可以看一下。
LinearLayout l = new LinearLayout(this);
l.setLayoutParams(new ViewGroup.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
您也可以查看this作为示例