개발/Android

개발/Android

레이아웃 파라미터 코드로 수정하기

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.setLayou..

njsung
'개발/Android' 카테고리의 글 목록