Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리스트뷰
- GPS
- ListvView
- webcam
- WebCamTexture
- Round Square
- 안드로이드
- bottom
- Ext
- 유니티
- 스피너
- gradle
- UI
- DP
- camera
- 레이아웃
- spinner
- GlobalComponent
- layout
- Android
- 그래들
- 조이스틱
- Handelr
- Unity
Archives
- Today
- Total
JY-Dev Tech Blog
안드로이드(Android) - RelativeLayout set LayoutParams Programmatically (마진값 코드상으로 변경하는법 , LayoutParams 설정법) 본문
안드로이드/레이아웃
안드로이드(Android) - RelativeLayout set LayoutParams Programmatically (마진값 코드상으로 변경하는법 , LayoutParams 설정법)
JY-Dev 2020. 10. 12. 14:25[OverView]
이번에는 RelativeLayout에서 LayoutParam을 설정하는법에대해 알려드리겠습니다.
[Code]
먼저 LayoutParams를 설정할 View를 생성해줍니다.
RelativeLayout r1 = findViewById(R.id.r1);
그다음 LayoutParams를 생성해줍니다.
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT,RelativeLayout.LayoutParams.WRAP_CONTENT);
원하는 Rule(Ex - above , left, below)를 적용해줍니다. addRule(적용할 설정, 대상 id값)
params.addRule(RelativeLayout.ABOVE , R.id.bottom_layout);
setMargin 마진 설정
params.setMargins(left,top,right,bottom);
View에 LayoutParams 설정
r1.setLayoutParams(params);
'안드로이드 > 레이아웃' 카테고리의 다른 글
Android(안드로이드) - BottomNavigationView disable shifting mode (0) | 2020.11.11 |
---|---|
안드로이드(Android) - Navigation 사용법 (0) | 2020.11.09 |
안드로이드(Android) - font 적용시키기 (0) | 2020.10.08 |
안드로이드(Android) - infinite circuler progressbar (0) | 2020.09.24 |
안드로이드(Android) - Drawable Shape Color Change (0) | 2020.09.07 |
Comments