我是安卓新手。我已经在带有文本苹果的 .java 文件中动态添加了 textview,但我想将它添加到顶部。我怎样才能做到这一点。
这是我的代码......在 .jave 文件中
TextView lblname;
LinearLayout linearlayout;
lblname = new TextView(this);
linearlayout = (LinearLayout) findViewById(R.id. linearlayout);
linearlayout.addView(lblname);
先感谢您..