반응형
layoutGraphView = (ViewGroup) findViewById(R.id.layoutGraphView);RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,device_height/3);
먼저 view 객체를 생성하고 RelativeLayout의 LayoutParams 객체 params를 생성한다.
초기화시 Width,Height를 설정할 수 있다.
params.topMargin = MainActivity.device_height/4;
top,left,right,bottom 마진 또한 위처럼 코드로 조절할 수 있다.
layoutGraphView.setLayoutParams(params);
그 후 view 객체에 파라미터를 설정하면 적용된 것을 확인할 수 있다.
반응형