我正在使用以下代码以编程方式设置布局的参数
LinearLayout text;
text = (LinearLayout) findViewById(R.id.text);
RelativeLayout.LayoutParams layoutParams =
(RelativeLayout.LayoutParams)text.getLayoutParams();
layoutParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
我猜这会将 alignParentRight 值设置为 true。如果需要,我是否可以以编程方式将此值设置为 false?