Android开发教程--关于LayoutParams removeRule出错问题的解决

经过研究发现,removeRule API 17 才加的方法,为了在 API 17 前也能使用,可以使用它的等价方法,使用 addRule(verb, 0)。
例如:
RelativeLayout.LayoutParams lp = (LayoutParams) inputTextLayout.getLayoutParams();
lp.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM, 0);

你可能感兴趣的:(Android开发教程--关于LayoutParams removeRule出错问题的解决)