我想动态地将 textview 添加到线性布局中。
我使用了以下代码:
LinearLayout ll = (LinearLayout)findViewById(R.id.viewlayout);
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
TextView tv = new TextView(viewrecords.this);
tv.setId(1);
tv.setTextSize(15);
tv.setText("test adding");
tv.setLayoutParams(lp);
ll.addView(tv);
我没有添加文本视图。任何人都可以帮我解决这个问题。