我正在为 Android 开发,但遇到了问题。当我使用添加对象addView
的方法时,它不会在屏幕上显示任何内容。ViewGroup
ViewGroup
谁能帮我?
RelativeLayout fullLayout=new RelativeLayout(this);
RelativeLayout top=new RelativeLayout(this);
TextView phoneNumber=new TextView(context);
phoneNumber.setText("137928833");
RelativeLayout.LayoutParams phoneParams=new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
phoneParams.addRule(RelativeLayout.ALIGN_PARENT_LEFT); phoneParams.leftMargin=130; phoneParams.topMargin=120;
top.addView(phoneNumber,phoneParams);
fullLayout.addView(top,0);
我使用 setContentView(fullLayouot),它不起作用。