我有一个自定义视图,它将被打包并添加到另一个项目中。在视图中,我想提供一个按钮选项。
这是我在 CustomView 类中的内容。
final CustomView currentView = (CustomView) findViewById(this.getId());
RelativeLayout.LayoutParams params = (new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT ));
params.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
closeButton.setLayoutParams(params);
currentView.addView(closeButton);
这都包含在一个 RelativeLayout 标记以及应用程序的其他对象中
一切都会编译,但是在 CustomView 中,按钮是左对齐而不是右对齐。有什么想法吗???